java.lang.Object
org.apache.batik.transcoder.TranscoderSupport
org.apache.batik.transcoder.AbstractTranscoder
org.apache.batik.transcoder.XMLAbstractTranscoder
org.apache.batik.transcoder.SVGAbstractTranscoder
org.apache.batik.transcoder.image.ImageTranscoder
org.apache.batik.transcoder.image.PNGTranscoder
- All Implemented Interfaces:
- org.apache.batik.transcoder.Transcoder
- public class PNGTranscoder
- extends ImageTranscoder
This class is an ImageTranscoder that produces a PNG image.
- Version:
- $Id: PNGTranscoder.java,v 1.23 2005/03/27 08:58:36 cam Exp $
| Nested classes inherited from class org.apache.batik.transcoder.SVGAbstractTranscoder |
org.apache.batik.transcoder.SVGAbstractTranscoder.SVGAbstractTranscoderUserAgent |
|
Field Summary |
static float[] |
DEFAULT_CHROMA
The default Primary Chromaticities for sRGB imagery. |
static org.apache.batik.transcoder.TranscodingHints.Key |
KEY_GAMMA
The gamma correction key. |
static org.apache.batik.transcoder.TranscodingHints.Key |
KEY_INDEXED
The color indexed image key to specify number of colors used in
palette. |
| Fields inherited from class org.apache.batik.transcoder.SVGAbstractTranscoder |
builder, ctx, curAOI, curTxf, DEFAULT_ALLOWED_SCRIPT_TYPES, DEFAULT_DEFAULT_FONT_FAMILY, height, KEY_ALLOWED_SCRIPT_TYPES, KEY_ALTERNATE_STYLESHEET, KEY_AOI, KEY_CONSTRAIN_SCRIPT_ORIGIN, KEY_DEFAULT_FONT_FAMILY, KEY_EXECUTE_ONLOAD, KEY_HEIGHT, KEY_LANGUAGE, KEY_MAX_HEIGHT, KEY_MAX_WIDTH, KEY_MEDIA, KEY_PIXEL_TO_MM, KEY_PIXEL_UNIT_TO_MILLIMETER, KEY_USER_STYLESHEET_URI, KEY_WIDTH, root, userAgent, width |
|
Constructor Summary |
PNGTranscoder()
Constructs a new transcoder that produces png images. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
KEY_GAMMA
public static final org.apache.batik.transcoder.TranscodingHints.Key KEY_GAMMA
- The gamma correction key.
Key: |
KEY_GAMMA |
Value: |
Float |
Default: |
PNGEncodeParam.INTENT_PERCEPTUAL |
Required: |
No |
Description: |
Controls the gamma correction of the png image.
A value of zero for gamma disables the generation
of a gamma chunk. No value causes an sRGB chunk
to be generated. |
DEFAULT_CHROMA
public static final float[] DEFAULT_CHROMA
- The default Primary Chromaticities for sRGB imagery.
KEY_INDEXED
public static final org.apache.batik.transcoder.TranscodingHints.Key KEY_INDEXED
- The color indexed image key to specify number of colors used in
palette.
Key: |
KEY_INDEXED |
Value: |
Integer |
Default: |
none/true color image |
Required: |
No |
Description: |
Turns on the reduction of the image to index
colors by specifying color bit depth, 1,2,4,8. The resultant
PNG will be an indexed PNG with color bit depth specified. |
PNGTranscoder
public PNGTranscoder()
- Constructs a new transcoder that produces png images.
createImage
public java.awt.image.BufferedImage createImage(int width,
int height)
- Creates a new ARGB image with the specified dimension.
- Specified by:
createImage in class ImageTranscoder
writeImage
public void writeImage(java.awt.image.BufferedImage img,
org.apache.batik.transcoder.TranscoderOutput output)
throws org.apache.batik.transcoder.TranscoderException
- Writes the specified image to the specified output.
- Specified by:
writeImage in class ImageTranscoder