PrepareSpaceFor allocates enought space on a temporary file for ImageCount images of size Width*Height*BitCount.

Call this method to improve performance only when you plan to add a lot of images of the some size.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void PrepareSpaceFor(
	int width,
	int height,
	int bitCount,
	int imageCount
)
Public Sub PrepareSpaceFor ( _
	width As Integer, _
	height As Integer, _
	bitCount As Integer, _
	imageCount As Integer _
)
public:
void PrepareSpaceFor(
	int width, 
	int height, 
	int bitCount, 
	int imageCount
)

Parameters

width
Int32
Width in pixels
height
Int32
Height in pixels
bitCount
Int32
Bits per pixel
imageCount
Int32
Number of images

See Also