Page 1 of 1

combine tif file to a multi page tif

Posted: 2009-03-31T21:52:12-07:00
by floydtagle
HI All

Im combining multiple tif file to a one multi page tif file,
example code:

Code: Select all

img.Convert("c:\1.tif", "c:\2.tif", "c:\2.tif", "-adjoin", output)
this code is working but what i need is to convert all the files in a folder, is it possible? and if possible please share me your code. i really need this

thanks
Floyd

Re: combine tif file to a multi page tif

Posted: 2009-04-01T05:37:21-07:00
by magick
Try wildcard filenames, something like "c:\*.tif".

Re: combine tif file to a multi page tif

Posted: 2009-04-01T18:16:10-07:00
by floydtagle
thanks.. it really works...