'Getting the color mode 04 color space of an eps image
I am trying to find the color mode or color space of the image, I have used Pillow library for that.
my code:
image = Image.open(image_path)
print(image.mode)
It gets the perfect output for all other formats except eps format. For eps format, it is showing rgb color mode only, even if it is CMYK Color Mode. Kindly help me with this, or point me the reason for this behaviour.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
