Package com.activecq.tools.quickimage

Examples of com.activecq.tools.quickimage.QuickImageResource


        width = scrubDimension(width,  maxWidth, widthWhiteList);
        height = scrubDimension(height, maxHeight, heightWhiteList);
        rotate = scrubRotate(rotate, rotateWhiteList);

        // Create QuickImageResource
        final QuickImageResource imageResource = new QuickImageResource(resource, resourceType);
        imageResource.setCrop(crop);
        imageResource.setRotate(rotate);
        imageResource.setWidth(width);
        imageResource.setHeight(height);
        return imageResource;
    }
View Full Code Here

TOP

Related Classes of com.activecq.tools.quickimage.QuickImageResource

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.