Package org.apache.fop.svg
Interface NativeImageHandler
-
- All Known Implementing Classes:
AFPGraphics2D
,PDFDocumentGraphics2D
,PDFGraphics2D
public interface NativeImageHandler
native image handler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.
-
-
-
Method Detail
-
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
-
-