Tagged Questions
2
votes
1answer
142 views
Python.exe crashes when saving CMYK tif image with PIL
I'm having troubles only with CMYK tif images in PIL. The thing is that everything seems to be going fine, I can load the file, save it, but when I crop it and try to save it python.exe just hangs. ...
2
votes
1answer
626 views
Halftone Images In Python
I am working on a project that requires me to separate out each color in a CYMK image and generate a halftone image that will be printed on a special halftone printer. The method used is analogues to ...
2
votes
1answer
226 views
Replacing images in PDF documents with Python?
We generate PDF documents with RGB images stored in a CMS.
As part of the PDF processing we sometimes have the need to convert the RGB images
to CMYK (for print productions).
Converting the images ...
0
votes
0answers
746 views
PIL convert from cmyk to rgb looses xmp metadata
i need to convert cmyk images to rgb in my python app. unfortunately the metadata gets lost in this process.
import Image
path = '/path/to/image.jpg'
im = Image.open(path)
...
0
votes
2answers
635 views
CMYK overprinting (colour-separated PDF output) with Reportlab
is it possible to use CMYK overprinting without using the CMYKColorSep class, which always generates a new seperate color in the printer settings, i just want to use overprinting with the standard 4 ...