convert xx.png to xx.rgb
convert xx.png to xx.rgb
How can I convert xx.png to xx.rgb via imagemagick
Re: convert xx.png to xx.rgb
convert xx.png xx.rgb
Re: convert xx.png to xx.rgb
I had tried to use "convert xx.png xx.rgb" .but canot open xx.rgb by ps.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: convert xx.png to xx.rgb
As Bonzo says, the answer is in the question.
However, what PS expects to find in the file may not be what IM puts in it. IM makes a headless file, containing integer pixel data, typically 16 bits/channel. What does PS want?
However, what PS expects to find in the file may not be what IM puts in it. IM makes a headless file, containing integer pixel data, typically 16 bits/channel. What does PS want?
snibgo's IM pages: im.snibgo.com
Re: convert xx.png to xx.rgb
According to the Imagemagick formats page:
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.
Re: convert xx.png to xx.rgb
"RGB" used to be a popular format on SGI machines. ImageMagick calls them ".sgi" now. It might be what PS is wanting, if so use
Code: Select all
magick xx.png sgi:xx.rgb