Is it possible to get color profile of an image from the image? #852
Answered
by
ausi
jcogs-design
asked this question in
Q&A
-
The |
Beta Was this translation helpful? Give feedback.
Answered by
ausi
Sep 7, 2023
Replies: 1 comment 1 reply
-
I think this depends on the driver. // Imagick
$image->getImagick()->getImageProfile('icc');
// Gmagick
$image->getGmagick()->getimageprofile('ICM');
// GD does not support color profiles These methods should return the binary data of the ICC profile. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jcogs-design
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this depends on the driver.
These methods should return the binary data of the ICC profile.