You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Tilman Ginzel (JIRA)" <ji...@apache.org> on 2017/02/01 11:59:51 UTC

[jira] [Created] (PDFBOX-3673) Filled form fields appear gray instead of black

Tilman Ginzel created PDFBOX-3673:
-------------------------------------

             Summary: Filled form fields appear gray instead of black
                 Key: PDFBOX-3673
                 URL: https://issues.apache.org/jira/browse/PDFBOX-3673
             Project: PDFBox
          Issue Type: Bug
          Components: AcroForm
    Affects Versions: 2.0.4, 2.0.3, 2.0.5, 2.1.0
            Reporter: Tilman Ginzel
         Attachments: input.pdf, output-2.0.2.pdf, output-2.0.3.pdf, output-2.0.4.pdf, output-2.0.5.pdf, output-2.1.0.pdf

Hi,

I'm facing the following issue: When filling out an acrobat form and flattening it, the text color in the resulting pdf is gray instead of black.

I attached the [^input.pdf] and several output files for different pdfbox versions. Using pdfbox 2.0.2, I get the expected result with black text, as from version >=2.0.3 the text is gray.

Code:
{code}
public static void main(String[] args) throws IOException {
    PDDocument doc = PDDocument.load(new File("input.pdf"));
    PDAcroForm form = doc.getDocumentCatalog().getAcroForm();
    form.getField("Text1").setValue("value");
    form.getField("Text2").setValue("value");
    form.getField("Text3").setValue("value");
    form.flatten();
    doc.save("output.pdf");
}
{code}

The default appearance for every text field is set to something like {{/Helv 0 Tf 0 g}}. Our current workaround is to replace {{0 g}} with {{0 0 0 rg}}. But in my understanding, they both should yield the same result.

Thanks in advance.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org