Faster way to extract profile-icc info from a jpeg?
Faster way to extract profile-icc info from a jpeg?
Is there any faster way other than identify -verbose if I only want to extract profile-icc info from a jpeg?
Re: Faster way to extract profile-icc info from a jpeg?
Try
- convert image.jpg iptc:profile.iptc
convert image.jpg xmp:profile.xmp
Re: Faster way to extract profile-icc info from a jpeg?
this is much faster than identify -verbose! plus, for jpegs with no embedded color profiles, i can just check file size of output profile.icm to identify.
is there any major difference between convert 1.jpg icc: profile.icm and convert 1.jpg profile.icm?
is there any major difference between convert 1.jpg icc: profile.icm and convert 1.jpg profile.icm?
Re: Faster way to extract profile-icc info from a jpeg?
Here's an even faster way although it only works with JPEG:
- convert -size 64x64 image.jpg profile.icm
Re: Faster way to extract profile-icc info from a jpeg?
i think you meant:
convert -size 64x64 image.jpg profile.icm
?
it's indeed faster, especially for big files!
convert -size 64x64 image.jpg profile.icm
?
it's indeed faster, especially for big files!
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: Faster way to extract profile-icc info from a jpeg?
I have added this information to IM Examples, Formats, Profiles section, and will appear in a day or so.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: Faster way to extract profile-icc info from a jpeg?
Glad to have helped contributing to the examples!