Class ImageConverterRendered2PNG
- java.lang.Object
-
- org.apache.xmlgraphics.image.loader.impl.AbstractImageConverter
-
- org.apache.xmlgraphics.image.loader.impl.ImageConverterRendered2PNG
-
- All Implemented Interfaces:
ImageConverter
public class ImageConverterRendered2PNG extends AbstractImageConverter
This ImageConverter converts Rendered to PNG images.
-
-
Field Summary
-
Fields inherited from interface org.apache.xmlgraphics.image.loader.spi.ImageConverter
MEDIUM_CONVERSION_PENALTY, MINIMAL_CONVERSION_PENALTY, NO_CONVERSION_PENALTY
-
-
Constructor Summary
Constructors Constructor Description ImageConverterRendered2PNG()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Image
convert(Image src, java.util.Map hints)
Converts an image into a different representation.ImageFlavor
getSourceFlavor()
Returns the flavor that this converter expects.ImageFlavor
getTargetFlavor()
Returns the flavor that this converter converts images into.-
Methods inherited from class org.apache.xmlgraphics.image.loader.impl.AbstractImageConverter
checkSourceFlavor, getConversionPenalty
-
-
-
-
Method Detail
-
convert
public Image convert(Image src, java.util.Map hints) throws ImageException, java.io.IOException
Converts an image into a different representation.Consumers can get the effective MIME type (if any) from the associated
ImageFlavor
.- Parameters:
src
- the source imagehints
- the conversion hints- Returns:
- the converted image
- Throws:
ImageException
- if an error occurs while converting the imagejava.io.IOException
- if an I/O error occurs while converting the image
-
getSourceFlavor
public ImageFlavor getSourceFlavor()
Returns the flavor that this converter expects.- Returns:
- the source flavor
-
getTargetFlavor
public ImageFlavor getTargetFlavor()
Returns the flavor that this converter converts images into.- Returns:
- the target flavor
-
-