hi
I am wishing to use the Magick C/C++ API to perform ICC color conversions on jpg images, in the same way that convert does:
Code: Select all
convert -profile ./aRGB.icc ./in-aRGB.jpg \
-profile ./sRGB.icc ./out-sRGB.jpg
A little background: I wish to do this programmatically as I will be processing a potentially large batch of images whereby I will already have the (jpeg) image data in memory (from previous processing) along with it's associated ICC profile (also in memory).
thanks