TImageEnMIO.CreateFromIEMBitmap
Declaration
constructor CreateFromIEMBitmap(MBitmap: TIEMultiBitmap);
Description
Creates a new instance of TImageEnMIO, assigning the property
AttachedIEMBitmap.
Example
// Print all images in a TIFF file
mbmp := TIEMultiBitmap.Create();
mio := TImageEnMIO.CreateFromIEMBitmap( mbmp );
mio.DoPrintPreviewDialog();
...
mio.Free();
mbmp.Free();