Package com.adobe.acs.commons.images

Examples of com.adobe.acs.commons.images.ImageTransformer


     * @inheritDoc
     */
    public final Layer transform(Layer layer) {

        for (final String type : this.transforms.keySet()) {
            final ImageTransformer imageTransformer = this.imageTransformers.get(type);
            if (imageTransformer == null) {
                log.warn("Skipping transform. Missing ImageTransformer for type: {}");
                continue;
            }

            final ValueMap transformParams = this.transforms.get(type);
            layer = imageTransformer.transform(layer, transformParams);
        }

        return layer;
    }
View Full Code Here

TOP

Related Classes of com.adobe.acs.commons.images.ImageTransformer

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.