Package org.geotools.image.palette

Examples of org.geotools.image.palette.InverseColorMapOp


        GetMapRequest request = mapContext.getRequest();
        final String format = request.getFormat();

        // do we want it to be 8 bits?
        if (format.equalsIgnoreCase(IMAGE_TIFF8) || (mapContext.getPaletteInverter() != null)) {
            InverseColorMapOp paletteInverter = mapContext.getPaletteInverter();
            image = forceIndexed8Bitmask(image, paletteInverter);
        }

        // write it out
        try {
View Full Code Here

TOP

Related Classes of org.geotools.image.palette.InverseColorMapOp

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.