Code: Select all
Version: ImageMagick 6.9.6-5 Q16 x86_64 2016-11-15 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2016 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC Modules
Delegates (built-in): bzlib freetype jng jpeg ltdl lzma png tiff xml zlib
I would like to "normalize" their colorspaces and give them one profile.
I am not very concerned about minor color shifting. It's more important to me to have one consistent colorspace (RGB?) and assign a matching profile.
So far, I am converting images using:
Code: Select all
convert \
images/* \
-strip \
-colorspace RGB \
+profile "icm" \
output/
I have downloaded color profiles from Adobe, and I am not sure which one to pick:
AdobeRGB1998.icc
AppleRGB.icc
ColorMatchRGB.icc
Question: Which should I pick?
I am assuming that all I need to do is:
Code: Select all
convert \
images/* \
-strip \
-colorspace RGB \
+profile "icm" \
-profile /path/to/XXXXXXX.icc
output/
Question: Do I need to worry about providing an output profile? Should the output and input profiles be the same?The first "-profile" then given, is the input profile.
The second "-profile" given, is the output profile.