Uses of Class
org.apache.pdfbox.rendering.RenderDestination
-
Packages that use RenderDestination Package Description org.apache.pdfbox.debugger.ui org.apache.pdfbox.pdmodel.graphics.optionalcontent org.apache.pdfbox.rendering -
-
Uses of RenderDestination in org.apache.pdfbox.debugger.ui
Methods in org.apache.pdfbox.debugger.ui that return RenderDestination Modifier and Type Method Description static RenderDestination
RenderDestinationMenu. getRenderDestination()
static RenderDestination
RenderDestinationMenu. getRenderDestination(java.lang.String actionCommand)
-
Uses of RenderDestination in org.apache.pdfbox.pdmodel.graphics.optionalcontent
Methods in org.apache.pdfbox.pdmodel.graphics.optionalcontent with parameters of type RenderDestination Modifier and Type Method Description PDOptionalContentGroup.RenderState
PDOptionalContentGroup. getRenderState(RenderDestination destination)
-
Uses of RenderDestination in org.apache.pdfbox.rendering
Fields in org.apache.pdfbox.rendering declared as RenderDestination Modifier and Type Field Description private RenderDestination
PDFRenderer. defaultDestination
private RenderDestination
PageDrawer. destination
private RenderDestination
PageDrawerParameters. destination
Methods in org.apache.pdfbox.rendering that return RenderDestination Modifier and Type Method Description RenderDestination
PDFRenderer. getDefaultDestination()
RenderDestination
PageDrawerParameters. getDestination()
static RenderDestination
RenderDestination. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RenderDestination[]
RenderDestination. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.pdfbox.rendering with parameters of type RenderDestination Modifier and Type Method Description java.awt.image.BufferedImage
PDFRenderer. renderImage(int pageIndex, float scale, ImageType imageType, RenderDestination destination)
Returns the given page as an RGB or ARGB image at the given scale.void
PDFRenderer. renderPageToGraphics(int pageIndex, java.awt.Graphics2D graphics, float scaleX, float scaleY, RenderDestination destination)
Renders a given page to an AWT Graphics2D instance.void
PDFRenderer. setDefaultDestination(RenderDestination defaultDestination)
Constructors in org.apache.pdfbox.rendering with parameters of type RenderDestination Constructor Description PageDrawerParameters(PDFRenderer renderer, PDPage page, boolean subsamplingAllowed, RenderDestination destination, java.awt.RenderingHints renderingHints, float imageDownscalingOptimizationThreshold)
Package-private constructor.
-