Declaration
TIEMultiBitmap = class(TIECustomMultiBitmap);
Description
TIEMultiBitmap is an array of images. It allows you to work with multiple-frame images in memory, such as GIF, TIFF, AVI, etc. It is also used by
TImageEnMView to store images within the grid.
Examples
// Convert a multi-page TIFF to a PDF
mbmp := TIEMultiBitmap.create;
mbmp.Read( 'D:\input.tif' );
mbmp.Write( 'D:\output.pdf' );
mbmp.Free;
// Add an image to the current image list
MBitmap.AppendImage( 'C:\MyImage.tif' );
// Delete the third image from the image list
MBitmap.DeleteImage( 2 );
Methods and Properties
GeneralPage EditingImage AccessImage InformationInput/OutputInput/Output Parameters (Meta-Data)Image ManipulationVirtual Multi-BitmapsEventsSee Also
-
TIEDBMultiBitmap