Package org.apache.batik.util.awt.image.codec

Examples of org.apache.batik.util.awt.image.codec.ImageEncoder.encode()


     */
    public void encodeImage(BufferedImage buf, File imageFile){
        try{
            OutputStream os = new FileOutputStream(imageFile);
            ImageEncoder encoder = new PNGImageEncoder(os, null);
            encoder.encode(buf);
            os.flush();
            os.close();
        }catch(IOException e){
            throw new Error("Could not write imageFile: " + imageFile.getName());
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.