ResampleTo copies a resampled instance of the current image to a Target IEImage.

The content of the destination image changes (stretched to new size).

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void ResampleTo(
	IEImage target,
	int newWidth,
	int newHeight,
	IEResampleFilter filter
)
Public Sub ResampleTo ( _
	target As IEImage, _
	newWidth As Integer, _
	newHeight As Integer, _
	filter As IEResampleFilter _
)
public:
void ResampleTo(
	IEImage^ target, 
	int newWidth, 
	int newHeight, 
	IEResampleFilter filter
)

Parameters

target
IEImage
The destination image.
newWidth
Int32
New width of destination (-1=auto calculated)
newHeight
Int32
New height of destination (-1=auto calculated)
filter
IEResampleFilter
Resample filter.

See Also