I am using iTextSharp to add text to PDF files.
The Text Color is usually specified as CMYK, but will require the need to specify spot/special colors.
In the Line:
PdfSpotColor spotColour = new PdfSpotColor("PANTONE 100 CV", 0.5f, new GrayColor(0.9f));
Does anyone know the description and meaning of the paramaters
so we have (string name, float tint, Color altcs)
I assume the name is the Color Separation Name. Not 100% sure what tint is or its range, is that some kind of alpha/transaparency value? and is the altcs a display color, rather than the separation layer used for actual printing?