convert xx.png to xx.rgb
Posted: 2016-10-28T04:10:00-07:00
How can I convert xx.png to xx.rgb via imagemagick
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=30756
So you will probably have to add some more detail to the convert command. You will have to do some research as snibgo suggests as .rgb does not seem to be a popular format..Use -size and -depth to specify the image width, height, and depth. To specify a single precision floating-point format, use -define quantum:format=floating-point. Set the depth to 32 for single precision floats, 64 for double precision, and 16 for half-precision.
Code: Select all
magick xx.png sgi:xx.rgb