combine tif file to a multi page tif

ImageMagickObject is a Windows COM+ interface to ImageMagick. COM+, Visual Basic, and Delphi users should post to this discussion group.
Post Reply
floydtagle

combine tif file to a multi page tif

Post 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
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: combine tif file to a multi page tif

Post by magick »

Try wildcard filenames, something like "c:\*.tif".
floydtagle

Re: combine tif file to a multi page tif

Post by floydtagle »

thanks.. it really works...
Post Reply