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?".
I have multiple image which is different compressed. I want to merge this files to single tif file. Can i use the different compression methods for them while merging.
For example
Image1.tif compression => Group4
Image2.tif compression => Jpeg with 16 quality
I want single tiff image with scene 1 group4, scene 2 is jpeg with 16 quality.
When writing a number of images to a single tif, IM has no mechanism for requesting a different compression for each image. "-compress" applies to all the images in the file.
You can use IM to save each image to its own tif, with different compressions. Then use an external tool such as tiffcp to merge the tifs into a single file, with mixed compressions.