How to scale 8 bpp tiff image to 14 bpp

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
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

You'll need a recent release of ImageMagick and a command similar to:
  • -> convert logo: -sharpen 0x1 -depth 14 logo.tif
    -> tiffinfo logo.tif
    Image Width: 640 Image Length: 480
    Resolution: 72, 72 (unitless)
    Bits/Sample: 14
    Compression Scheme: LZW
    Photometric Interpretation: RGB color
    FillOrder: msb-to-lsb
    Orientation: row 0 top, col 0 lhs
    Samples/Pixel: 3
    Rows/Strip: 2
    Planar Configuration: single image plane
    DocumentName: logo.tif
    Software: ImageMagick 6.2.8 07/27/06 Q16 http://www.imagemagick.org
Post Reply