Package org.apache.pdfbox.pdmodel.graphics.color

Examples of org.apache.pdfbox.pdmodel.graphics.color.ColorSpaceCMYK


public class TestPDPageContentStream extends TestCase {

    public void testSetCmykColors() throws IOException, COSVisitorException {
        PDDocument doc = new PDDocument();

        ColorSpace colorSpace = new ColorSpaceCMYK();

        PDPage page = new PDPage();
        doc.addPage(page);

        PDPageContentStream contentStream = new PDPageContentStream(doc, page, false, true);
View Full Code Here

TOP

Related Classes of org.apache.pdfbox.pdmodel.graphics.color.ColorSpaceCMYK

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.