public class PNGEncoderAdapter extends java.lang.Object implements ImageEncoder
Constructor and Description |
---|
PNGEncoderAdapter() |
Modifier and Type | Method and Description |
---|---|
byte[] |
encode(java.awt.image.BufferedImage bufferedImage)
Encodes an image in PNG format.
|
void |
encode(java.awt.image.BufferedImage bufferedImage,
java.io.OutputStream outputStream)
Encodes an image in PNG format and writes it to an OutputStream.
|
float |
getQuality()
Get the quality of the image encoding (always 0.0).
|
boolean |
isEncodingAlpha()
Get whether the encoder should encode alpha transparency (always false).
|
void |
setEncodingAlpha(boolean encodingAlpha)
Set whether the encoder should encode alpha transparency (not
supported in this ImageEncoder).
|
void |
setQuality(float quality)
Set the quality of the image encoding (not supported in this
ImageEncoder).
|
public PNGEncoderAdapter()
public float getQuality()
getQuality
in interface ImageEncoder
public void setQuality(float quality)
setQuality
in interface ImageEncoder
quality
- A float representing the quality.public boolean isEncodingAlpha()
isEncodingAlpha
in interface ImageEncoder
public void setEncodingAlpha(boolean encodingAlpha)
setEncodingAlpha
in interface ImageEncoder
encodingAlpha
- Whether the encoder should encode alpha
transparency.public byte[] encode(java.awt.image.BufferedImage bufferedImage) throws java.io.IOException
encode
in interface ImageEncoder
bufferedImage
- The image to be encoded.java.io.IOException
public void encode(java.awt.image.BufferedImage bufferedImage, java.io.OutputStream outputStream) throws java.io.IOException
encode
in interface ImageEncoder
bufferedImage
- The image to be encoded.outputStream
- The OutputStream to write the encoded image to.java.io.IOException