iText和颜色配置文件

时间:2012-02-24 23:35:28

标签: java pdf colors itext profile

我正在使用iText的PdfStamper创建PDF,我想应用不同的颜色配置文件。我只看过使用PdfWriter的例子,但似乎PdfStamper有一个底层的PdfWriter,你可以通过getWriter()得到它。我正在使用下面的代码,但它似乎没有应用颜色配置文件。

PdfWriter pdfwriter = outputPDF.getWriter();
String profileName = this._renderVO.getProfileName();
String profilePath = this._renderVO.getProfilePath();
ICC_Profile icc = ICC_Profile.getInstance(new FileInputStream(profilePath));
pdfwriter.setOutputIntents("Custom", "", "http://www.color.org", profileName, icc);

setOutputIntents是否需要调用以应用个人资料?

谢谢!

0 个答案:

没有答案