png to red/green/blue to tiff
Posted: 2017-08-14T14:19:07-07:00
I need to convert a png file to 3 separate uncompressed tiff files that contain the red,green or blue values. The tiff files have to be 8 bit. Suggestions?
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=32512
You should always provide the version of ImageMagick you're using and what platform you're running it on, and maybe include the commands you've tried already. There are several ways to do most IM tasks, and you'll get better help if you give as much detail as you can.clownpleco wrote: ↑2017-08-14T14:19:07-07:00I need to convert a png file to 3 separate uncompressed tiff files that contain the red,green or blue values. The tiff files have to be 8 bit. Suggestions?
Code: Select all
convert input.png -separate -compress none -depth 8 out-%02d.tif