Package com.sun.jimi.core.encoder.png

Examples of com.sun.jimi.core.encoder.png.PNGEncoder


                        options.setQuality(Math.round(quality * 100));
                        source.setOptions(options);
                    }
                } else if ("png".equals(type)) {
                    // PNG
                    encoder = new PNGEncoder();
                    // the alpha parameter does mean something here:
                    ((PNGEncoder) encoder).setAlpha(new Boolean(alpha));
                    PNGOptions options = new PNGOptions();
                    // TODO: Use quality for CompressionType control, similar to ImageIOWrapper (?)
                    options.setCompressionType(PNGOptions.COMPRESSION_MAX);
View Full Code Here

TOP

Related Classes of com.sun.jimi.core.encoder.png.PNGEncoder

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.