ImageEn, unit iexHelperFunctions |
|
TIEMultiBitmapHelper.MIO
Declaration
property MIO: TImageEnMIO;
Description
Returns a
TImageEnMIO 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
◼Delphi/C++ 2005 or newer is required to use helper classes
// Prompt to print the pages of a TIFF image
multiBmp.MIO.LoadFromFile( 'C:\MyImage.tiff' );
multiBmp.MIO.DoPrintPreviewDialog();
// Acquire images from a scanner
multiBmp.MIO.Acquire();
// Prompt the user to print thumbnail sheets
multiBmp.MIO.DoPrintPreviewDialog();

// Prompt the user to save thumbnail/contact sheets
multiBmp.MIO.DoSavePreviewDialog();
