I Would like to extract the extract Pantone Color from an PDF by using ITextSharp.
My code was taken from Chris Haas awnser. It was heavily modified to extract Words with position for it ( not just Chunks ) but still the same in its core. Now i have to extract more then the RGB values like the CMYK values or the Pantone Colors, stored inside the PDF.
public void RenderText(TextRenderInfo renderInfo)
{
var colorSupported = renderInfo.GetFillColor();
...
}
or
renderInfo.GetStrokeColor();
does not fit my needs. I would like to extract More then RGB.