Package org.apache.pdfbox.pdmodel.graphics.blend

Examples of org.apache.pdfbox.pdmodel.graphics.blend.SoftMaskPaint


    private Paint applySoftMaskToPaint(Paint parentPaint, PDSoftMask softMask) throws IOException
    {
        if (softMask != null)
        {
            return new SoftMaskPaint(parentPaint, createSoftMaskRaster(softMask));
        }
        else
        {
            return parentPaint;
        }
View Full Code Here

TOP

Related Classes of org.apache.pdfbox.pdmodel.graphics.blend.SoftMaskPaint

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.