Package org.openinvoice.ubl4j.core.common.text.pdf.common

Examples of org.openinvoice.ubl4j.core.common.text.pdf.common.PDFBaseColorWrapper


            if (colors.length != 3) {
                PDFInvoiceRendererBeanException e = new PDFInvoiceRendererBeanException(key);
                e.setHint(" Use RGB color model to define your desired color. For example: 117,87,79");
                throw e;
            }
            return new PDFBaseColorWrapper(Integer.parseInt(colors[0]), Integer.parseInt(colors[1]), Integer.parseInt(colors[2]));
        } else {
            throw new PDFInvoiceRendererBeanException(key);
        }
    }
View Full Code Here

TOP

Related Classes of org.openinvoice.ubl4j.core.common.text.pdf.common.PDFBaseColorWrapper

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.