Package org.apache.fop.svg
Interface NativeImageHandler
- All Known Implementing Classes:
AFPGraphics2D,PDFDocumentGraphics2D,PDFGraphics2D
public interface NativeImageHandler
native image handler
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddNativeImage(org.apache.xmlgraphics.image.loader.Image image, float x, float y, float width, float height) Add a natively handled image directly to the document.
-
Method Details
-
addNativeImage
void addNativeImage(org.apache.xmlgraphics.image.loader.Image image, float x, float y, float width, float height) Add a natively handled image directly to the document. This is used by the ImageElementBridge to draw a natively handled image (like JPEG or CCITT images) directly into the document rather than converting the image into a bitmap and increasing the size.- Parameters:
image- the image to drawx- the x positiony- the y positionwidth- the width to draw the imageheight- the height to draw the image
-