Maybe I'm going about this entirely the wrong way?
I want to create <x> number of thumbnail images from one multi-page TIFF image.
Here's the code I'm using:
- Code: Select all
oImage = ThisForm.oGDPicture.TiffCreateMultiPageFromFile(ThisForm.cWorkImg)
ThisForm.oGDPicture.TiffSelectPage(oImage, 3) //Select page 3
oThumb = ThisForm.oGDPicture.CreateThumbnail(oImage, 50, 50) // Create New Image 50 x 50
ThisForm.oGDPicture.TiffSaveMultiPageToFile(oThumb, "LOCAL\WORK\XXX.TIF")
Can you help?
