ImageEn, unit iexBitmaps

TIELocation


Declaration

TIELocation = (ieMemory, ieFile, ieTBitmap);


Description

Value Description
ieMemory Uses standard memory. Canvas not available. Used for fast and smaller images
ieFile Uses memory mapped files. Canvas not available. Used for very large images
ieTBitmap Uses TBitmap VCL object. Canvas available. Used for drawing and compatibility. Location can be assigned before or after Allocate. Assigning Location on a existing image it converts the image to new location


Example

// Optimize TImageEnView to handle very large images
ImageEnView1.LegacyBitmap := False;  // Generally not needed. False is the default
ImageEnView1.IEBitmap.Location := ieFile;


See Also

 MinFileSize
 Location
 UndoLocation