Creates a new Image resized to have the exact given dimensions.

Namespace: ImageSense
Assembly: ImageSense (in ImageSense.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public FilterChain Resize(
	int width,
	int height
)
Visual Basic
Public Function Resize ( _
	width As Integer, _
	height As Integer _
) As FilterChain
Visual C++
public:
FilterChain^ Resize(
	int width, 
	int height
)

Parameters

width
Type: System..::..Int32
The width of the destination image.
height
Type: System..::..Int32
The height of the destination image.

Return Value

This FilterChain.

See Also