Link to home
Start Free TrialLog in
Avatar of tell
tell

asked on

multi-page tiff

How can I merge some *.tif files into one multipage tiff
ASKER CERTIFIED SOLUTION
Avatar of tward
tward

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tward
tward

Here is a sample for Black and White TIFFs saved as CCIT G4 Compression using the Kodak Image Edit Control Version 1.01.1311:

  ImgEdit1.Image = "C:\WINDOWS\TEMP\00000001.TIF"
  ImgEdit1.Display
  ImgEdit1.SavePage "C:\WINDOWS\TEMP\MULTI.TIF", 1, 1, 5, 1, False, 1
 
  ImgEdit1.Image = "C:\WINDOWS\TEMP\00000002.TIF"
  ImgEdit1.Display
  ImgEdit1.SavePage "C:\WINDOWS\TEMP\MULTI.TIF", 1, 1, 5, 1, False, 2

  ImgEdit1.Image = "C:\WINDOWS\TEMP\00000003.TIF"
  ImgEdit1.Display
  ImgEdit1.SavePage "C:\WINDOWS\TEMP\MULTI.TIF", 1, 1, 5, 1, False, 3
Avatar of tell

ASKER

Thanks a lot tward!

Also it did not work in the beginning (my VB6.0 is running under NT4.0 where I could not find the SavePage method in the imgedit.ocx) I found the Wang imgadmin.ocx with an Insert method.