-adjoin problem windows and imagemagick 6.4.1-Q16

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ssrahurk

-adjoin problem windows and imagemagick 6.4.1-Q16

Post by ssrahurk »

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..
User avatar
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

Post by fmw42 »

-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)
ssrahurk

Re: -adjoin problem windows and imagemagick 6.4.1-Q16

Post by ssrahurk »

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.
Post Reply