| Interface | Description |
|---|---|
| IPdfBoxGraphics2DColor |
Common interface for all our PDColor carrying classes.
|
| IPdfBoxGraphics2DColorMapper |
Map Color to PDColor
|
| IPdfBoxGraphics2DColorMapper.IColorMapperEnv |
Environment to use for mapping the given color
|
| IPdfBoxGraphics2DDrawControl |
Allows you to influence the fill and draw operations.
|
| IPdfBoxGraphics2DDrawControl.IDrawControlEnv |
The environment of the draw operation
|
| IPdfBoxGraphics2DFontTextDrawer |
Draw text using Fonts
|
| IPdfBoxGraphics2DFontTextDrawer.IFontTextDrawerEnv |
Enviroment for font based drawing of text
|
| IPdfBoxGraphics2DImageEncoder |
Encode and compress an image as PDImageXObject
|
| IPdfBoxGraphics2DMarkedContentDrawer |
Functional Interface to allow draw within a marked content sequence
|
| IPdfBoxGraphics2DPaintApplier |
Apply the given paint on the Content Stream.
|
| IPdfBoxGraphics2DPaintApplier.IPaintEnv |
The different mappers used by the paint applier.
|
| Class | Description |
|---|---|
| PdfBoxGraphics2D |
Graphics 2D Adapter for PDFBox.
|
| PdfBoxGraphics2DCMYKColor |
This color class represents a CMYK Color.
|
| PdfBoxGraphics2DColor |
Universal PDColor Carrying class.
|
| PdfBoxGraphics2DColorMapper | |
| PdfBoxGraphics2DDrawControlDefault |
Default implementation which does nothing.
|
| PdfBoxGraphics2DFontTextDrawer |
Default implementation to draw fonts.
|
| PdfBoxGraphics2DFontTextDrawerDefaultFonts |
Like
PdfBoxGraphics2DFontTextDrawer, but tries to use default fonts
whenever possible. |
| PdfBoxGraphics2DFontTextForcedDrawer |
Always draw using text, even if we know that we can not map the text correct
|
| PdfBoxGraphics2DLosslessImageEncoder |
Encodes all images using lossless compression.
|
| PdfBoxGraphics2DPaintApplier |
Default paint mapper.
|
| PdfBoxGraphics2DPaintApplier.PaintApplierState | |
| RGBtoCMYKColorMapper |
Usage:
PdfBoxGraphics2D pdfBoxGraphics2D = new PdfBoxGraphics2D(this.doc, (int) (width), (int) (height));
PdfBoxGraphics2DColorMapper colorMapper = new RGBtoCMYKColorMapper(icc_profile);
pdfBoxGraphics2D.setColorMapper(colorMapper);
Where ICC_Profile is an instance of java.awt.color.ICC_Profile that supports
a CMYK colorspace.
|
Copyright © 2022. All rights reserved.