ImageEn, unit iexHelperFunctions

TIEBitmapHelper.IO

TIEBitmapHelper.IO


Declaration

property IO: TImageEnIO;


Description

Returns a TImageEnIO component, which provides all functionality for loading and saving images, and other I/O functions, such as printing and scanning.

Note: You must add the iexHelperFunctions unit to your uses clause


Examples

// Retrieve an image from a Twain scanner
iebmp.IO.AcquireParams.YResolution := 300;
iebmp.IO.AcquireParams.XResolution := 300;
iebmp.IO.Acquire();

// Prompt to print the current image
iebmp.IO.DoPrintPreviewDialog( iedtDialog );