ResizeImage Method

Moxiecode Image Manager API

Resizes image.

Namespace:  Moxiecode.ImageManager.Utils
Assembly:  MCImageManager (in MCImageManager.dll) Version: 1.0.0.0

Syntax

C#
public static void ResizeImage(
	string input_file,
	string output_file,
	int width,
	int height,
	int quality
)
Visual Basic (Declaration)
Public Shared Sub ResizeImage ( _
	input_file As String, _
	output_file As String, _
	width As Integer, _
	height As Integer, _
	quality As Integer _
)
Visual C++
public:
static void ResizeImage(
	String^ input_file, 
	String^ output_file, 
	int width, 
	int height, 
	int quality
)

Parameters

input_file
Type: System..::.String
File to resize.
output_file
Type: System..::.String
File to output to.
width
Type: System..::.Int32
Width of new image
height
Type: System..::.Int32
Height of new image
quality
Type: System..::.Int32
Image quality in percent.

See Also