Preserving Embedded Fonts in iText

I have a java application which splits a pdf into sections using itext, then stitches a selection of these up together again. The original pdf has many embedded fonts varying in type (all non-system fonts). When I stitch the pdf's up again, some of the embedded fonts are missing.

For example, this is a clipping from the original fonts list: 在这里输入图像描述

This is a clipping from the generated pdf font list: 在这里输入图像描述

I am using PdfWriter and PdfReader to copy the pages into the new document, with PdfContent and addTemplate().


Finally found the answer! The problem was the level of Pdf was set too low:

writer.setPdfVersion(PdfWriter.VERSION_1_2);

I changed this to:

writer.setPdfVersion(PdfWriter.VERSION_1_7);

and now all fonts are embedded correctly.

I actually forgot that piece of code was in there - I had borrowed it from a project I had done in the past.

Lesson learned ;)

I would love to know why this is the case though.

链接地址: http://www.djcxy.com/p/65454.html

上一篇: iText Java:不添加音讯符号

下一篇: 在iText中保留嵌入的字体