How to change pixel bit depth

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
jpiquemal
Posts: 54
Joined: 2003-12-07T01:57:19-07:00

Post by jpiquemal »

try
convert 01.png -fx "r&2" 02.png
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

With recent versions of ImageMagick you can specify -depth 12 to generate 12-bit RGB images for example: convert image.png -depth 12 image.tif
Post Reply