Package org.librebiz.pureport.context

Examples of org.librebiz.pureport.context.ImageAttribute


            if (url != null) {
                float w = width == null ? 0 : (float)width.getValue(Unit.PT);
                float h = height == null ? 0 : (float)height.getValue(Unit.PT);
                float orgx = (float)originX.getValue(Unit.PT);
                float orgy = (float)originY.getValue(Unit.PT);
                attr = new ImageAttribute(url, alignment,
                        w, h, orgx, orgy);
            }
        }
        if (attr != null) {
            builder.setAttribute(TextAttribute.CHAR_REPLACEMENT, attr);
View Full Code Here

TOP

Related Classes of org.librebiz.pureport.context.ImageAttribute

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.