Hi,
To create a multipagetiff,
Whenever I use command: convert 1.tiff 2.tiff -adjoin new.tiff
Imagemagick version 6.4.1-Q16
new.tiff when opened just shows 1.tiff, it is not saved as a multipage file.. there is only one image that is the first image..
though the size of the file is greater than 1.tiff.
Can anyone help me with that? Is it a version and windows compatibility problem? This same command works fine on linux..
-adjoin problem windows and imagemagick 6.4.1-Q16
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: -adjoin problem windows and imagemagick 6.4.1-Q16
-adjoin appends the image in the row direction so that you get one image that is twice as tall. it does not make a multipage image
use
convert image1.tiff image2.tiff multipage.tiff
to make a two page (two-frame) tiff image (assuming the two images are the same dimensions)
use
convert image1.tiff image2.tiff multipage.tiff
to make a two page (two-frame) tiff image (assuming the two images are the same dimensions)
Re: -adjoin problem windows and imagemagick 6.4.1-Q16
got it thanks a lot.. actually the previous command worked fine too.. just found out that i did not have a multipage tiff reader.. I downloaded one and its working fine..
Thank you.
Thank you.