Search found 8 matches

by MaxiPunkt
2018-02-11T12:44:07-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

"-depth 8" has no effect in this case
"- type truecolor" is the key to solve the problem
by MaxiPunkt
2018-02-11T11:17:55-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

O.k. thank you two guys for your amazingly quick replies to my questions + finding the solution for my problem. So my conclusion is that ImageMagick currently tries to store output into a rare (but probably valid) format (16bit/total) which causes all the trouble. I would appreciate if ImageMagick w...
by MaxiPunkt
2018-02-09T14:41:30-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

$ exiftool testit-orig.tif | grep "Bits Per Sample" Bits Per Sample : 8 8 8 $ exiftool testit-new.tif | grep "Bits Per Sample" Bits Per Sample : 16 $ exiftool testit-new2.tif | grep "Bits Per Sample" Bits Per Sample : 8
by MaxiPunkt
2018-02-09T14:22:34-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

Converting with "-posterize 8" color-depth will be kept at 8bit w/o additional parameters. Converting with "-posterize 64" color-depth will be kept only at 8bit when additionally issuing "-depth 8" and "-type truecolor". So IMHO behavior for TIFF-conversion cu...
by MaxiPunkt
2018-02-09T12:58:11-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

Cool, indeed this works for me as well - seems this could be a workaround for the problem for now. But still the question is: Why is it necessary to add all these options to keep color-depth at 8bits for TIFF-conversion using "-posterize"? I currently would expect to get same result withou...
by MaxiPunkt
2018-02-09T12:01:49-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

If you are getting 16-bits on Q16 and it would fit into 8-bits per channel pixel, then just add -depth 8 to your command. As already mentioned above - this currently does _not_ work for TIFF-files for whatever reason! Note that proper IM syntax reads the input right after convert and not at the end...
by MaxiPunkt
2018-02-09T11:49:36-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

Re: posterize TIFF-files: how to prevent change of color-depth?

Starting point is a sRGB-image with "only" 8bits, which is (2⁸)³=256³=16,7Mio colors. For my understanding option "-posterize 64" should reduce colors to a maximum of 64³ = 262.1444 defined color levels. But for some reason I don't understand "convert" does increase col...
by MaxiPunkt
2018-02-09T09:34:41-07:00
Forum: Bugs
Topic: posterize TIFF-files: how to prevent change of color-depth?
Replies: 17
Views: 15846

posterize TIFF-files: how to prevent change of color-depth?

Hi there, on my computer I'm running Fedora FC27, ImageMagick version is $ rpm -qa | grep ImageMagick ImageMagick-6.9.9.27-1.fc27.x86_64 ImageMagick-libs-6.9.9.27-1.fc27.x86_64 I'm using a BASH-script which does the following: 1) scanning into TIFF-file(s) (SANE's scanimage) 2) create multipage-TIFF...