我有兴趣将PDFBox用于需要能够在PDF输出中指定专色和分色以转到专业打印机的项目,并且很好奇它是否支持这一点。如果是这样(我想是的),我也在寻找一些示例代码。
我在他们的邮件列表(here)上发现了2009年的一篇旧帖子,这让我相信PDFBox可以支持分色,但是没有成功找到任何示例代码。我浏览了他们的JavaDoc并发现了org.apache.pdfbox.pdmodel.graphics.color
个类,但不知道如何利用它们,并且在其网站或源代码中看不到任何cookbook示例
我特别感谢有助于说明DeviceN色彩空间的任何示例。
答案 0 :(得分:1)
请参阅以下内容
从PDF文件(spotColor.pdf)获取PDColor,并确保您使用的专色位于此PDF文件中。(我使用Adobe Illustrator制作文件)
public static Map<String, PDColor> getSpotColor() {
Map<String, PDColor> colors = new HashMap<String, PDColor>();
PDDocument spotColorFile = null;
try {
spotColorFile = PDDocument.load(new FileInputStream(new File(
"d:\\spotColor.pdf")));
for (PDPage page : spotColorFile.getPages()) {
for (COSName name : page.getResources().getColorSpaceNames()) {
PDColor color = page.getResources().getColorSpace(name)
.getInitialColor();
PDSeparation cs = (PDSeparation) color.getColorSpace();
colors.put(cs.getColorantName(), color);
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (spotColorFile != null)
try {
spotColorFile.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
spotColorFile = null;
}
}
return colors;
}
使用您的PDColor
public static void main(String[] args) {
PDDocument doc = null;
PDPage page = null;
try {
Map<String, PDColor> colors = getSpotColor();
doc = new PDDocument();
page = new PDPage(new PDRectangle(100, 100));
doc.addPage(page);
PDPageContentStream content = new PDPageContentStream(doc, page);
content.beginText();
content.setNonStrokingColor(colors.get("PANTONE 2607 C"));
content.setFont(PDType1Font.HELVETICA_BOLD, 20);
content.showText("abcdef");
content.endText();
content.setNonStrokingColor(colors.get("PANTONE 108 U"));
content.addRect(50, 50, 50, 50);
content.fill();
content.close();
doc.save("d:\\spotColorTest.pdf");
} catch (Exception e) {
System.out.println(e);
} finally {
if (doc != null)
try {
doc.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
doc = null;
}
}
}
3如果您有更聪明的想法,请告诉我 :)
答案 1 :(得分:0)
为什么不能使用PDSeparation
class