Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
There was a decision made at that time to not pass on the compression, so as not to decompress and recompress, esp with JPG compression, and thus lose more quality.
When it comes to TIFF, two main image compression options are available–they’re known as LZW or ZIP. Both ZIP and LZW are lossless compression methods. That means that no data is being lost in the image compression[/color][/url] process, unlike a lossy format like JPG. But there are two main reasons you might not to use ZIP or LZW compression. Because they require more processing to open and close them, compressed TIFF files can be a little slower to work with.
that's all well and good, but if you want to change compression, it's easy to do so. if you want to retain the settings of the original, not changing anything is the intuitive thing.
image.compressType(image.compressType());
is not a code that seems like it should do anything, but it does.
I just committed a patch for this that only make sure that jpeg compression is not used when converting jpeg to tiff. The next release of ImageMagick (6.8.9-2) will include this fix.