Something has changed around IM 6.7.2-10. Help please!
Posted: 2012-11-23T02:22:13-07:00
Hello, I'm new here and I hope I can get some help.
I'm using ImageMagick on regular basis in my scanning workflow to automate turning the C-41 negative with orange mask (in linear TIFF file) into the positive image.
I'm very happy with it, however the script stopped working with newest IM versions (latest working version reported by other is 6.7.2-10).
The core part of my script is:
The full script and test image are available here.
With the newest IM versions the generated colors are way off.
I've spent a lot of time searching for solution (including some -colorspace sRGB and -set colorspace sRGB|RGB experiments), however I've failed.
Does anybody know what has changed in the IM? I'm run out of ideas.
Regards, JaZ
P.S. Is it possible to speed up the -fx "1/u" operation?
I'm using ImageMagick on regular basis in my scanning workflow to automate turning the C-41 negative with orange mask (in linear TIFF file) into the positive image.
I'm very happy with it, however the script stopped working with newest IM versions (latest working version reported by other is 6.7.2-10).
The core part of my script is:
Code: Select all
convert "input.tif[0]" -colorspace RGB \
-channel R -fx "$1/u" \
-channel G -fx "$2/u" \
-channel B -fx "$3/u" -channel RGB out.tif
With the newest IM versions the generated colors are way off.
I've spent a lot of time searching for solution (including some -colorspace sRGB and -set colorspace sRGB|RGB experiments), however I've failed.
Does anybody know what has changed in the IM? I'm run out of ideas.
Regards, JaZ
P.S. Is it possible to speed up the -fx "1/u" operation?