AppleCommander/lib/ac-api/src/main/java/com/webcodepro/applecommander/storage/filters/imagehandlers/ImageIoImage.java

80 lines
2.4 KiB
Java

/*
* AppleCommander - An Apple ][ image utility.
* Copyright (C) 2002-2022 by Robert Greene
* robgreene at users.sourceforge.net
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.webcodepro.applecommander.storage.filters.imagehandlers;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import javax.imageio.ImageIO;
/**
* ImageIoImage is a specific implementation of AppleImage that handles all
* ImageIO related coding surrounding image manipulation. This is available
* in JDK 1.4 as well as an extra library for JDK 1.3.
* <p>
* Date Created: Mar 25, 2003
* @author Rob Greene
*/
public class ImageIoImage extends AppleImage {
private BufferedImage image;
/**
* Create ImageIoImage. Verifies all (known) required classes are available
* as well as sets up the class.
*/
public ImageIoImage(int width, int height) throws ClassNotFoundException {
// This lists all permutations of a format (ie, JPG, jpg, JPEG, jpeg, PNG, png):
// super(ImageIO.getWriterFormatNames());
super(new String[] { "PNG", "JPEG" }); //$NON-NLS-1$//$NON-NLS-2$
Class.forName("javax.imageio.ImageIO"); //$NON-NLS-1$
image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
}
/**
* Set a color point.
*/
public void setPoint(int x, int y, int color) {
image.setRGB(x, y, color);
}
/**
* Get a color point.
*/
public int getPoint(int x, int y) {
return image.getRGB(x,y);
}
/**
* Save the image.
*/
public void save(OutputStream outputStream) throws IOException {
ImageIO.write(image, getFileExtension(), outputStream);
}
/**
* Return the width of the image.
*/
public int getWidth() {
return image.getWidth();
}
/**
* Return the height of the image.
*/
public int getHeight() {
return image.getHeight();
}
}