Examples of ImageAttribute


Examples of com.agiletec.plugins.jacms.aps.system.services.content.model.extraAttribute.ImageAttribute

  }
 
  private void manageImageMapAttribute(AttributeInterface attribute,
      AttributeTracer tracer, HttpServletRequest request) {
    ImageMapAttribute imageMapAttribute = (ImageMapAttribute) attribute;
    ImageAttribute imageAttr = imageMapAttribute.getImage();   
    AttributeTracer imageTracer = (AttributeTracer) tracer.clone();
    ResourceAttributeManager imageManager = (ResourceAttributeManager) this.getManager(imageAttr);
    imageManager.updateAttribute(imageAttr, imageTracer, request);
    List<LinkedArea> areas = imageMapAttribute.getAreas();
    for (int i = 0; i < areas.size(); i++) {
View Full Code Here

Examples of org.bouncycastle.bcpg.attr.ImageAttribute

       int       type = tag;

       switch (type)
       {
       case IMAGE_ATTRIBUTE:
           return new ImageAttribute(data);
       }

       return new UserAttributeSubpacket(type, data);
    }
View Full Code Here

Examples of org.bouncycastle.bcpg.attr.ImageAttribute

       int       type = tag;

       switch (type)
       {
       case IMAGE_ATTRIBUTE:
           return new ImageAttribute(data);
       }

       return new UserAttributeSubpacket(type, data);
    }
View Full Code Here

Examples of org.bouncycastle.bcpg.attr.ImageAttribute

        if (imageData == null)
        {
            throw new IllegalArgumentException("attempt to set null image");
        }

        list.add(new ImageAttribute(imageType, imageData));
    }
View Full Code Here

Examples of org.bouncycastle2.bcpg.attr.ImageAttribute

       int       type = tag;

       switch (type)
       {
       case IMAGE_ATTRIBUTE:
           return new ImageAttribute(data);
       }

       return new UserAttributeSubpacket(type, data);
    }
View Full Code Here

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
Copyright © 2018 www.massapi.com. 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.