8 bit depth working?

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
Sesshomurai

8 bit depth working?

Post by Sesshomurai »

Hi,
I'm doing a convert from .pdf to .tiff and I specify -depth 8 but when Ioad the resulting tiff in GIMP, it says its 16 bit.
What am I missing?

thank you!
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: 8 bit depth working?

Post by magick »

What does ImageMagick say. Try
  • convert image.pdf -depth 8 image.tif
    identify -verbose image.tif
We tried this sequence and it reported 8-bit depth as expected. We're using ImageMagick 6.5.4-0.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: 8 bit depth working?

Post by fmw42 »

what is your complete command line?

what version of IM?

what do you get from

identify -verbose image.tif
Sesshomurai

Re: 8 bit depth working?

Post by Sesshomurai »

Hey guys,
Thanks for the speedy response. awesome. Here is my command

Code: Select all

convert doc.pdf -depth 8 -define quantum:format=unsigned -type grayscale out.tif
Using ImageMagick 6.3.7 02/19/08

Looks from the identify call it reports 8-bit. Not sure why GIMP thinks its 16, guess I should ask over on their forums! Hehe.

Thanks again.
Post Reply