Package org.jemmy.image.pixel

Source Code of org.jemmy.image.pixel.PNGSaver

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.jemmy.image.pixel;

import java.io.*;
import java.util.zip.CRC32;
import java.util.zip.Deflater;
import java.util.zip.DeflaterOutputStream;
import org.jemmy.image.pixel.Raster.Component;

/**
*
* @author shura
*/
public class PNGSaver {

    /**
     * black and white image mode.
     */
    public static final byte BW_MODE = 0;
    /**
     * grey scale image mode.
     */
    public static final byte GREYSCALE_MODE = 1;
    /**
     * full color image mode.
     */
    public static final byte COLOR_MODE = 2;
    OutputStream out;
    CRC32 crc;
    byte mode;

    /**
     *
     * @param file
     * @throws java.io.FileNotFoundException
     */
    public PNGSaver(File file) throws FileNotFoundException {
        this(new FileOutputStream(file));
    }

    /**
     * public constructor of PNGEncoder class with greyscale mode by default.
     *
     * @param out output stream for PNG image format to write into
     */
    public PNGSaver(OutputStream out) {
        this(out, COLOR_MODE);
    }

    /**
     * public constructor of PNGEncoder class.
     *
     * @param out output stream for PNG image format to write into
     * @param mode BW_MODE, GREYSCALE_MODE or COLOR_MODE
     */
    public PNGSaver(OutputStream out, byte mode) {
        crc = new CRC32();
        this.out = out;
        if (mode < 0 || mode > 2) {
            throw new IllegalArgumentException("Unknown color mode");
        }
        this.mode = mode;
    }

    void write(int i) throws IOException {
        byte b[] = {(byte) ((i >> 24) & 0xff), (byte) ((i >> 16) & 0xff), (byte) ((i >> 8) & 0xff), (byte) (i & 0xff)};
        write(b);
    }

    void write(byte b[]) throws IOException {
        out.write(b);
        crc.update(b);
    }

    /**
     * main encoding method (stays blocked till encoding is finished).
     *
     * @param image BufferedImage to encode
     * @throws IOException IOException
     */
    public void encode(Raster image) throws IOException {
        encode(image, true);
    }

    /**
     * main encoding method (stays blocked till encoding is finished).
     *
     * @param image BufferedImage to encode
     * @param closeStream requests method to close the stream after the image is
     * written
     * @throws IOException IOException
     */
    private void encode(Raster image, boolean closeStream) throws IOException {
        int width = image.getSize().width;
        int height = image.getSize().height;
        final byte id[] = {-119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13};
        write(id);
        crc.reset();
        write("IHDR".getBytes());
        write(width);
        write(height);
        byte head[] = null;
        switch (mode) {
            case BW_MODE:
                head = new byte[]{1, 0, 0, 0, 0};
                break;
            case GREYSCALE_MODE:
                head = new byte[]{8, 0, 0, 0, 0};
                break;
            case COLOR_MODE:
                head = new byte[]{8, 2, 0, 0, 0};
                break;
        }
        write(head);
        write((int) crc.getValue());
        ByteArrayOutputStream compressed = new ByteArrayOutputStream(65536);
        BufferedOutputStream bos = new BufferedOutputStream(new DeflaterOutputStream(compressed, new Deflater(9)));
        int pixel;
        int color;
        int colorset;
        switch (mode) {
            case BW_MODE:
                int rest = width % 8;
                int bytes = width / 8;
                for (int y = 0; y < height; y++) {
                    bos.write(0);
                    for (int x = 0; x < bytes; x++) {
                        colorset = 0;
                        for (int sh = 0; sh < 8; sh++) {
                            pixel = getRGB(image, x * 8 + sh, y);
                            color = ((pixel >> 16) & 0xff);
                            color += ((pixel >> 8) & 0xff);
                            color += (pixel & 0xff);
                            colorset <<= 1;
                            if (color >= 3 * 128) {
                                colorset |= 1;
                            }
                        }
                        bos.write((byte) colorset);
                    }
                    if (rest > 0) {
                        colorset = 0;
                        for (int sh = 0; sh < width % 8; sh++) {
                            pixel = getRGB(image, bytes * 8 + sh, y);
                            color = ((pixel >> 16) & 0xff);
                            color += ((pixel >> 8) & 0xff);
                            color += (pixel & 0xff);
                            colorset <<= 1;
                            if (color >= 3 * 128) {
                                colorset |= 1;
                            }
                        }
                        colorset <<= 8 - rest;
                        bos.write((byte) colorset);
                    }
                }
                break;
            case GREYSCALE_MODE:
                for (int y = 0; y < height; y++) {
                    bos.write(0);
                    for (int x = 0; x < width; x++) {
                        pixel = getRGB(image, x, y);
                        color = ((pixel >> 16) & 0xff);
                        color += ((pixel >> 8) & 0xff);
                        color += (pixel & 0xff);
                        bos.write((byte) (color / 3));
                    }
                }
                break;
            case COLOR_MODE:
                for (int y = 0; y < height; y++) {
                    bos.write(0);
                    for (int x = 0; x < width; x++) {
                        pixel = getRGB(image, x, y);
                        bos.write((byte) ((pixel >> 16) & 0xff));
                        bos.write((byte) ((pixel >> 8) & 0xff));
                        bos.write((byte) (pixel & 0xff));
                    }
                }
                break;
        }
        bos.close();
        write(compressed.size());
        crc.reset();
        write("IDAT".getBytes());
        write(compressed.toByteArray());
        write((int) crc.getValue());
        write(0);
        crc.reset();
        write("IEND".getBytes());
        write((int) crc.getValue());
        out.flush();
        if (closeStream) {
            out.close();
        }
    }
    static final Component[] RGB = new Component[]{
        Component.RED, Component.GREEN, Component.BLUE};

    private int getRGB(Raster image, int x, int y) {
        int res = 0;
        double[] colors = new double[image.getSupported().length];
        image.getColors(x, y, colors);
        for (Component c : RGB) {
            res <<= 8;
            res |= (int)(colors[PixelImageComparator.arrayIndexOf(image.getSupported(), c)] * 0xFF);
        }
        return res;
    }
}
TOP

Related Classes of org.jemmy.image.pixel.PNGSaver

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.