TIEMultiBitmap.PrepareSpaceFor
Declaration
procedure PrepareSpaceFor(Width, Height: Integer; BitCount: Integer; ImageCount: Integer);
Description
Allocates enough space within the temporary file for
ImageCount images of size
Width *
Height *
BitCount.
Use this method to improve performance only when planning to add many images of the same size.
Note: Do not use in
IsVirtual mode
Example
// Prepare space for 100 800x600 24bit images
multiBitmap.PrepareSpaceFor( 800, 600, 24, 100 );