// Which is the same as MultiBitmap1.Clear(); MultiBitmap1.AppendImage( 'C:\Images\AnImage.jpg' ); MultiBitmap1.AppendImage( 'C:\Images\Image2.jpg' ); MultiBitmap1.AppendImage( 'C:\Images\3rdImage.png' );
// Create a searchable PDF file from 3 images (IEVision required) mbmp := TIEMultiBitmap.Create(); mbmp.FillFromList( ['D:\image1.png', 'D:\image2.png', 'D:\image3.png'] ); mbmp.CreateSearchablePDF( 'D:\Out.PDF', 'My Test PDF' ); // from iexHelpers.pas mbmp.Free;