I have a script that uses convert to process some png files into raw files.
This used to work
Code: Select all
convert foo.png -depth 16 r:bar.raw
if I do this
Code: Select all
convert foo.png -depth 16 bar.raw
if I do this
Code: Select all
convert foo.png -depth 16 rgb:bar.raw
So what is going on here, and how do you generate 16 bit grayscale raw files using convert these days?