Package com.volantis.map.sti.model

Examples of com.volantis.map.sti.model.Transformations


        // Set image width
        image.setWidth(getIntParameterValue(ParameterNames.IMAGE_WIDTH, 0));

        // Set image transformations
        Transformations transformations = getTransformations();

        if (null != transformations) {
            image.setTransformations(transformations);
        }
View Full Code Here


     *
     * @param prefix prefix of parameter where parameter can be found.
     * @return transformations model object.
     */
    private Transformations getTransformations() throws ConverterException {
        Transformations transformations = new Transformations();

        addCroppingTransformation(transformations);

        return transformations;
    }
View Full Code Here

TOP

Related Classes of com.volantis.map.sti.model.Transformations

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.