I have a tiff with 10 images and want to create another tiff using only image 1,image 6 and image 9 from the original tiff.
Will I be able to do this with TIEMultiBitmap?
Yes.
But it is very easy to do this simply by:
Loading the tif file into TImageEnMView with ImageEnMView1.MIO.LoadFromFile(AFileName) then save the file with ImageEnMView1.MIO.SaveToFileTiff(SavePictureDialog1.Filename, True);
procedure SaveToFileTIFF(const FileName: string; SelectedOnly: Boolean = False);
SaveToFileTiff saves all images in the TImageEnMView or in a TIEMultiBitmap as a TIFF file. If SelectedOnly is True then only the selected images are output.
So to save image 1, 6 and 9 is a multiframe tiff, just select image 1,6 and 9 and call ImageEnMView1.MIO.SaveToFileTiff(SavePictureDialog1.Filename, True);
Bill Miller
Adirondack Software & Graphics
Email: w2m@hughes.net
EBook: http://www.imageen.com/ebook/
Custom Commercial ImageEn Development