Substituing a profile in a jpeg file
Posted: 2007-06-28T08:15:38-07:00
Hello all,
I thought I'd asked this before but I can't find trace of it. How do you substitute a profile
in a JPG file without touching the bits ?
If I do:
The file gets recompressed
The reason I want to do that is that my files contain AdobeRGB profiles that
are not recognized by some apps. I want to substitute with another similar
profile that _is_ recognised, without changing anything else (exif info,
bits...). Maybe something like mogrify would be better suited but I got the same kind of recompression.
Thanks
I thought I'd asked this before but I can't find trace of it. How do you substitute a profile
in a JPG file without touching the bits ?
If I do:
Code: Select all
convert -verbose -profile $AdobeICC Source.jpg -profile $AdobeICC Dest.jpg
The reason I want to do that is that my files contain AdobeRGB profiles that
are not recognized by some apps. I want to substitute with another similar
profile that _is_ recognised, without changing anything else (exif info,
bits...). Maybe something like mogrify would be better suited but I got the same kind of recompression.
Thanks