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.rawif I do this
Code: Select all
convert foo.png -depth 16 bar.rawif I do this
Code: Select all
convert foo.png -depth 16 rgb:bar.rawSo what is going on here, and how do you generate 16 bit grayscale raw files using convert these days?