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 CMYK inks (colour-separated PDF output, as stated in the 2.4 changelog)

here my example code (reportlab 2.4 needed):

from reportlab.graphics.shapes import Rect
from reportlab.lib.colors import PCMYKColor, PCMYKColorSep
from reportlab.pdfgen.canvas import Canvas

black = PCMYKColor(0, 0, 0, 100)
blue  = PCMYKColor(91.0,  43.0,  0.0, 0.0)
red   = PCMYKColorSep( 0.0, 100.0, 91.0, 0.0, spotName='PANTONE 485 CV',density=100)
red2   = PCMYKColor( 0.0, 100.0, 91.0, 0.0, knockout=0) #knockout does nothing?

c = Canvas('test.pdf', (420,200))
c.setFillColor(black)
c.setFont('Helvetica', 10)
c.drawString(25,180, 'overprint w. CMYKColorSep')
c.setFillOverprint(True)
c.setFillColor(blue)
c.rect(25,25,100,100, fill=True, stroke=False)
c.setFillColor(red)
c.rect(100,75,100,100, fill=True, stroke=False)
c.setFillColor(black)
c.drawString(225,180, 'overprint w. plain CMYKColor (does not work)')
c.setFillColor(blue)
c.rect(225,25,100,100, fill=True, stroke=False)
c.setFillColor(red2)
c.rect(300,75,100,100, fill=True, stroke=False)
c.save()

note: you need to enable the overprinting preview in acrobat reader pro to correctly view this.

if this does not work with reportlab, do you know any other server-side alternative to generate pdf, where overprinting does work?

thank you very much

link|improve this question

feedback

2 Answers

You can only use overprint with CMYKColorSep. Its currently available in 2.4 but not stable (Robin is still messing with the code :) ).

There is a non public snippet on the reportlab website http://www.reportlab.com/snippets/10/ that demos it but hence the feature is still in development the snippet is not listed.

Meitham

link|improve this answer
thanks. the support for normal CMYK Colors is already in their daily build. look for setOverPrintMask() method on the Canvas. – return1.at Aug 18 '10 at 8:34
feedback
up vote 0 down vote accepted

this feature is not implemented in Reportlab 2.4. But they will do it with their next major release.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.