convert jpg to RGB components
Posted: 2019-10-18T09:45:53-07:00
I have jpg files and want to create single red, green and blue gray shade images. Is this possible?
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=36929
Code: Select all
convert image.jpg -separate channel.png
Code: Select all
convert image.jpg -channel r -separate red.png
convert image.jpg -channel g -separate green.png
convert image.jpg -channel b -separate blue.png