| java.lang.Object | |
| ↳ | com.pspdfkit.annotations.Annotation |
Known Direct Subclasses
|
Represents a generic annotation in the PDF document.
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| float | DEFAULT_BORDER_WIDTH | Default border width when none is set. | |||||||||
| int | OBJECT_NUMBER_NOT_SET | Return value for when the annotation doesn't have a set object number. | |||||||||
| int | PAGE_NUMBER_NOT_SET | Return value for when the annotation doesn't have a set page number. | |||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| protected static final Size | DEFAULT_MINIMUM_SIZE | Default minimum size of an annotation in PDF points. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| boolean | equals(Object o) | ||||||||||
| void |
generateAppearanceStream()
Regenerates the annotation's appearance stream if necessary.
| ||||||||||
| Completable |
generateAppearanceStreamAsync()
Regenerates the annotation's appearance stream if necessary.
| ||||||||||
| float |
getAlpha()
Returns the annotation's alpha.
| ||||||||||
| AppearanceStreamGenerator |
getAppearanceStreamGenerator()
Returns custom appearance stream generator that overrides appearance stream generation of this annotation.
| ||||||||||
| BlendMode |
getBlendMode()
Returns currently set blend mode.
| ||||||||||
| int |
getBorderColor()
Returns the border color of this annotation or
TRANSPARENT if no color is set. | ||||||||||
| List<Integer> |
getBorderDashArray()
Returns currently set dash array or
null if no pattern is set. | ||||||||||
| BorderStyle |
getBorderStyle()
Returns the current border style on the annotation or
NONE if none is set. | ||||||||||
| float |
getBorderWidth()
Returns the border line width / thickness.
| ||||||||||
| RectF |
getBoundingBox(RectF rect)
Position of this annotation on the page.
| ||||||||||
| RectF |
getBoundingBox()
Position of this annotation on the page.
| ||||||||||
| int |
getColor()
Returns a color associated with this object or
TRANSPARENT if no color is set. | ||||||||||
| String |
getContents()
Returns text contents of the annotation.
| ||||||||||
| Annotation |
getCopy(int pageIndex)
Creates a copy of this annotation that isn't attached to the document with the page index set to given index. | ||||||||||
| Date |
getCreatedDate()
Returns the creation date of the annotation.
| ||||||||||
| String |
getCreator()
Returns the name of the creator of this annotation.
| ||||||||||
| int |
getFillColor()
Returns a fill color associated with this object or
TRANSPARENT if no color is set. | ||||||||||
| EnumSet<AnnotationFlags> |
getFlags()
Annotation flags set.
| ||||||||||
| Annotation |
getInReplyTo()
Retrieves the annotation this annotation replies to, or
null it this annotation is not a reply or the
license doesn't support replies feature. | ||||||||||
| Maybe<Annotation> |
getInReplyToAsync()
Retrieves the annotation this annotation replies to asynchronously.
| ||||||||||
| Size |
getMinimumSize()
Returns the minimum size of the annotation.
| ||||||||||
| Date |
getModifiedDate()
Returns the date when this annotation was last modified.
| ||||||||||
| String |
getName()
Returns the content of Title/Name field of this annotation.
| ||||||||||
| int |
getObjectNumber()
The object number of this annotation.
| ||||||||||
| int |
getPageIndex()
The page number to which this annotation belongs.
| ||||||||||
| String |
getRichText()
Returns rich text contents of the annotation.
| ||||||||||
| String |
getSubject()
Returns the subject of this annotation.
| ||||||||||
| abstract AnnotationType |
getType()
Gets the annotation type of the annotation.
| ||||||||||
| boolean |
hasFlag(AnnotationFlags flag)
Test annotation flag.
| ||||||||||
| boolean |
hasLockedContents()
Check if the annotation has locked contents - i.e.
| ||||||||||
| int | hashCode() | ||||||||||
| boolean |
isAttached()
Whether the annotation is attached to the document and it has a valid object number.
| ||||||||||
| boolean |
isLocked()
Check if the annotation is locked - i.e.
| ||||||||||
| boolean |
isModified()
Returns whether the annotation is modified or not.
| ||||||||||
| boolean |
isReply()
Whether the annotations is a reply to another annotation.
| ||||||||||
| boolean |
isResizable()
Check if the annotation is resizable, or if this is a non-resizable annotation.
| ||||||||||
| void |
renderToBitmap(Bitmap bitmap)
Renders the appearance of this annotation into the passed bitmap.
| ||||||||||
| void |
renderToBitmap(Bitmap bitmap, AnnotationRenderConfiguration configuration)
Renders the appearance of this annotation into the passed bitmap.
| ||||||||||
| Single<Bitmap> |
renderToBitmapAsync(Bitmap bitmap)
Asynchronously renders the appearance of this annotation into the passed bitmap.
| ||||||||||
| Single<Bitmap> |
renderToBitmapAsync(Bitmap bitmap, AnnotationRenderConfiguration configuration)
Asynchronously renders the appearance of this annotation into the passed bitmap.
| ||||||||||
| void |
setAlpha(float alpha)
Sets the annotations' alpha value.
| ||||||||||
| void |
setAppearanceStreamGenerator(AppearanceStreamGenerator appearanceStreamGenerator)
Sets custom appearance stream generator that overrides appearance stream generation of this annotation.
| ||||||||||
| void |
setBlendMode(BlendMode blendMode)
Sets the blend mode used when generating annotation's appearance stream.
| ||||||||||
| void |
setBorderColor(int color)
Sets the border color for this annotation.
| ||||||||||
| void |
setBorderDashArray(List<Integer> dashes)
Sets a dash style for the border.
| ||||||||||
| void |
setBorderStyle(BorderStyle borderStyle)
Sets a border style for current annotation.
| ||||||||||
| void |
setBorderWidth(float borderWidth)
Sets border line width / thickness.
| ||||||||||
| void |
setBoundingBox(RectF newBoundingBox)
Sets the position and size of this annotation on the page.
| ||||||||||
| void |
setColor(int color)
Sets the color for this annotation.
| ||||||||||
| void |
setContents(String contents)
Sets text contents of the annotation.
| ||||||||||
| void |
setCreatedDate(Date createdDate)
Sets created date for this annotation.
| ||||||||||
| void |
setCreator(String creator)
Sets the creator of this annotation.
| ||||||||||
| void |
setFillColor(int color)
Sets the fill color for this annotation.
| ||||||||||
| void |
setFlags(EnumSet<AnnotationFlags> flags)
Sets annotation flags.
| ||||||||||
| void |
setInReplyTo(Annotation annotation)
Sets the annotation that this annotation replies to.
| ||||||||||
| void |
setModifiedDate(Date modifiedDate)
Sets last modified date for this annotation.
| ||||||||||
| void |
setName(String name)
Sets Title / Name field for this annotation
| ||||||||||
| void |
setRichText(String richText)
Sets rich text contents of the annotation.
| ||||||||||
| void |
setSubject(String subject)
Sets the subject of this annotation.
| ||||||||||
| String |
toInstantJson()
Produces Instant JSON representation of this annotation.
| ||||||||||
| String | toString() | ||||||||||
| abstract void |
updateTransformationProperties(RectF newBoundingBox, RectF oldBoundingBox)
Annotations may override this method to transform their properties (i.e.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Default border width when none is set.
Return value for when the annotation doesn't have a set object number.
Return value for when the annotation doesn't have a set page number.
Default minimum size of an annotation in PDF points.
Regenerates the annotation's appearance stream if necessary.
Note: this call may block for a while and should not be invoked on the main thread.
Regenerates the annotation's appearance stream if necessary.
Completable that can be subscribed to.
Returns the annotation's alpha.
<0.0f...1.0f>. Default value is 1.0f.
Returns custom appearance stream generator that overrides appearance stream generation of this annotation.
null when no custom appearance stream generator
is set.
Returns currently set blend mode. Defaults to NORMAL for all annotations except highlight.
Returns the border color of this annotation or TRANSPARENT if no color is set. Note that alpha
channel is not taken into account as per PDF specifications.
TRANSPARENT if no color is set.
Returns currently set dash array or null if no pattern is set.
Returns the border line width / thickness.
Position of this annotation on the page. Changing bounding box does not change annotations bounds. Instead call
setBoundingBox(RectF) to change annotation bounds.
| rect | Reuse rectangle. |
|---|
Position of this annotation on the page. The returned RectF is a copy, so changing its values won't
update the annotation's bounds. Instead call setBoundingBox(RectF) providing the altered rect to update
the annotation.
Returns a color associated with this object or TRANSPARENT if no color is set. Note that alpha
channel is not taken into account as per PDF specifications. This is the text color for FreeTextAnnotation and WidgetAnnotation.
TRANSPARENT if none is set.
Returns text contents of the annotation. This is usually the displayed text for annotations that display text or accessibility label for annotations that don't.
null if it's not set.
Creates a copy of this annotation that isn't attached to the document with the page index set to given index.
If this type of annotation can't be copied this method will return null.
Note: This will reset the name of the resulting annotation to an automatically generated UUID
if you want to keep the original name you have to manually set it on the returned copy.
| pageIndex | The page index the copied annotation should belong to. |
|---|
null if no copy could be made.
Returns the creation date of the annotation.
null if non-existent.
Returns the name of the creator of this annotation.
null if not set.
Returns a fill color associated with this object or TRANSPARENT if no color is set. Note that alpha
channel is not taken into account as per PDF specifications.
TRANSPARENT if no color is set.
Annotation flags set. Changing returned EnumSet does not change annotation flags. Instead call setFlags(EnumSet) to change annotation flags.
Retrieves the annotation this annotation replies to, or null it this annotation is not a reply or the
license doesn't support replies feature.
Note: this call may block for a while and should not be invoked on the main thread.
Annotation this annotation replies to, or null.Retrieves the annotation this annotation replies to asynchronously. The response is emitted inside the RxJava's
Maybe. It will contain the requested annotation if it exists, or be empty otherwise.
Returns the minimum size of the annotation.
Returns the date when this annotation was last modified.
null if non-existent.
Returns the content of Title/Name field of this annotation. This can be used to globally identify the annotation. This property will be automatically set to a type 4 (pseudo random) UUID during annotation construction time.
null. By default, this is initialized to a random UUID.
The object number of this annotation.
OBJECT_NUMBER_NOT_SET if not set.
The page number to which this annotation belongs.
PAGE_NUMBER_NOT_SET if not set.
Returns rich text contents of the annotation. This is text to be displayed in a pop-up for text markup annotations.
null if it's not set.
Returns the subject of this annotation.
null if it's not set.
Gets the annotation type of the annotation.
Test annotation flag.
true if flag is set on this annotation, false otherwise.
Check if the annotation has locked contents - i.e. annotation content can't be modified.
true if the annotation has locked content or false if annotation's content can be
modified.
Whether the annotation is attached to the document and it has a valid object number.
true if annotation is attached to the document and it has a valid object number, false
otherwise.
Check if the annotation is locked - i.e. annotation can't be deleted or modified (except contents).
true if the annotation is locked or false if it can be freely modified.
Returns whether the annotation is modified or not.
true if this annotations has been modified and the document containing it hasn't been
saved as part of the document.
Whether the annotations is a reply to another annotation.
true if this annotations is a reply to another annotation, false otherwise.
Check if the annotation is resizable, or if this is a non-resizable annotation.
true if the annotation can be resized (e.g. ink annotation) or false if it is a
non-resizable one (e.g. note annotation).
Renders the appearance of this annotation into the passed bitmap.
| bitmap | Target bitmap to render the annotation into. |
|---|
Renders the appearance of this annotation into the passed bitmap.
| bitmap | Target bitmap to render the annotation into. |
|---|---|
| configuration | Advanced annotation rendering configuration. |
Asynchronously renders the appearance of this annotation into the passed bitmap.
| bitmap | Target bitmap to render the annotation into. |
|---|
Asynchronously renders the appearance of this annotation into the passed bitmap.
| bitmap | Target bitmap to render the annotation into. |
|---|---|
| configuration | Advanced annotation rendering configuration. |
Sets the annotations' alpha value. It's the value in range <0.0f...1.0f>.
Sets custom appearance stream generator that overrides appearance stream generation of this annotation. The
appearanceStreamGenerator will be called when necessary to generate annotation's appearance stream.
Note: This does not automatically remove existing appearance streams. The appearance stream only gets
generated when the annotation has been modified or when calling generateAppearanceStream()
explicitly.
| appearanceStreamGenerator | Appearance stream generator for this annotation or null to remove custom
appearance stream generator from this annotation.
|
|---|
Sets the blend mode used when generating annotation's appearance stream.
| blendMode | blend mode to use when generating annotations appearance stream. |
|---|
Sets the border color for this annotation.
| color | The border color or TRANSPARENT to clear the field.
|
|---|
Sets a dash style for the border. It's in form of an array where the numbers mean full_length, empty
length, full_length... etc.. The pattern is repeated.
To get a dashed border, setBorderStyle(BorderStyle) should be set to DASHED and
color of the border should be set with setBorderColor(int).
| dashes | List of integer numbers representing lengths of a pattern. E.g. { 2, 3 } will generate a dash pattern with lines of length 2 and empty spaces of length 3. |
|---|
Sets a border style for current annotation. It should be accompanied with setBorderColor(int) call to
set the border color as well.
| borderStyle | BorderStyle to be set. NONE to clear it.
|
|---|
Sets border line width / thickness. For border to appear, color and style should be set via setBorderColor(int) and setBorderStyle(BorderStyle) as well.
| borderWidth | border width in PDF points |
|---|
Sets the position and size of this annotation on the page.
| newBoundingBox | Annotation's position on the page in PDF coordinates. |
|---|
Sets the color for this annotation. This is the text color for FreeTextAnnotation, WidgetAnnotation, and RedactionAnnotation.
| color | The annotation color or TRANSPARENT to clear the field.
|
|---|
Sets text contents of the annotation. This is usually the displayed text for annotations that display text or accessibility label for annotations that don't.
| contents | Contents string or null to clear the field.
|
|---|
Sets created date for this annotation.
| createdDate | Created date in UTC time or null to clear the field.
|
|---|
Sets the creator of this annotation.
| creator | Creator or null to clear the field.
|
|---|
Sets the fill color for this annotation.
| color | The annotation color or TRANSPARENT to clear the field.
|
|---|
Sets annotation flags.
| flags | Set of annotation flags to be set. |
|---|
Sets the annotation that this annotation replies to.
| annotation | Annotation to which this annotation is a reply. |
|---|
Sets last modified date for this annotation.
| modifiedDate | Last modified date in UTC time or null to clear the field.
|
|---|
Sets Title / Name field for this annotation
| name | Name of this annotation or null to clear the field.
|
|---|
Sets rich text contents of the annotation. This is the text to be displayed in a pop-up for text markup annotations.
| richText | Rich text contents for annotation or null to clear the field.
|
|---|
Sets the subject of this annotation.
Starting with PSPDFKit 5.0 this method will no longer affect the appearance of stamp annotations. Use setStampType(StampType) and setTitle(String) instead.
| subject | The subject of this annotation or null to clear the field.
|
|---|
Produces Instant JSON representation of this annotation.
Note: Make sure the annotation is attached to the document before exporting it to Instant JSON.
Annotations may override this method to transform their properties (i.e. points, rects, sizes) whenever the bounding box of the annotation changed.
| newBoundingBox | New bounding box of the annotation (in PDF points). |
|---|---|
| oldBoundingBox | Old bounding box of the annotation (in PDF points). |