On 4/28/08, Ryan Scott <[EMAIL PROTECTED]> wrote: > I do see an image now, thanks! However, it seems to be thresholded to a > single bit and no longer grayscale. I scanned through the options (so many!) > and didn't see one that would change this behavior. Any suggestions?
Look closely at your histogram; it shows only 2 levels (0 and 65537). The problem is that your image is 32-bits, meaning that each pixel can have a value from 0x00000000-0xFFFFFFFF, but your image uses only the least-significant 16 bits (only from 0x00000000-0x0000FFFF). Since your build of IM is only Q16, it discards the least-significant 16 bits. I think you need a Q32 build of IM in order for this to work properly. GNS _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
