| Modifier and Type | Class and Description |
|---|---|
class |
Container
A container class represents a group of elements on a page in a PDF file.
|
class |
Form
Represents a PDF form XObject.
|
class |
Group
A set of elements to be used within a PDF document.
|
class |
Image
An image resource can either be an image XObject or inline image found in a page's content stream.
|
class |
Path
A path in a PDF file defines shapes.
|
class |
PostScript
An XObject stream with the subtype PostScript.
|
class |
Shading
Represents a region shaded with color, as defined by a shading dictionary.
|
class |
Text
A container that represents a series of text elements and characters.
|
class |
TextRun
Represents one or more contiguous characters in a text object.
|
| Modifier and Type | Method and Description |
|---|---|
Element |
Element.clone()
Makes a copy of the element.
|
Element |
Element.clone(java.util.EnumSet<ElementCloneFlags> cloneFlags)
Makes a copy of the element.
|
Element |
Clip.getElement(int index)
Gets an Element from a Clip path.
|
Element |
Content.getElement(int index)
Get the element specified by index.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Clip.addElement(Element element)
Adds an Element to a Clip path as the first indexed Element.
|
void |
Content.addElement(Element NewElem)
Adds an existing Element at the end of the content object.
|
void |
Clip.addElement(Element element,
int addAfterIndex)
Adds an Element to a Clip path, after the Element index specified.
|
void |
Content.addElement(Element NewElem,
int addAfterIndex)
Adds an existing Element at the given index of the content object.
|
| Constructor and Description |
|---|
Content(Element firstElem)
Create content with a first Element.
|