1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* 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 Lesser General Public License for more details.
*
* Copyright (c) 2009 Pentaho Corporation. All rights reserved.
*/
package org.pentaho.reporting.libraries.base.encoder;
import java.awt.Image;
import java.io.IOException;
import java.io.OutputStream;
/**
* A image encoder. The encoder's encodeImage method must be synchronized in some way, so that
* multiple calls from multiple threads do not interact with each other.
*
* @author Thomas Morgner
*/
public interface ImageEncoder
{
/**
* Encodes the given image using the given encoder-specific quality and alpha-channel settings and writes
* the encoded image-data to the given stream.
*
* @param image the image to be encoded.
* @param outputStream the output stream, where to write the image data to.
* @param quality the quality of the encoding.
* @param encodeAlpha a flag controlling whether the alpha-channel should be encoded as well.
* @throws IOException if there was an IO error while generating or writing the image data.
* @throws UnsupportedEncoderException if the encoder is not supported.
*/
public void encodeImage(final Image image,
final OutputStream outputStream,
final float quality,
final boolean encodeAlpha) throws IOException, UnsupportedEncoderException;
/**
* Returns the mime-type of the encoded data.
*
* @return the mime-type.
*/
public String getMimeType();
}
|