Class: LineAnnotation

PSPDFKit.Annotations.LineAnnotation

Line annotations are used to draw straight lines on a page.

Line annotations are only selectable around their visible line. This means that you can create a page full of line annotations while annotations behind the line annotation are still selectable.

Right now, line annotations are implemented using SVG images. This behavior is subject to change.

Constructor

new PSPDFKit.Annotations.LineAnnotation(args)

Display a straight line on a page.

Parameters:
Name Type Description
args object

An object of the members.

Example

Create a line annotation

const annotation = new PSPDFKit.Annotations.LineAnnotation({
  pageIndex: 0,
  startPoint: new PSPDFKit.Geometry.Point({ x: 95, y: 95}),
  endPoint: new PSPDFKit.Geometry.Point({ x: 195, y: 195}),
  boundingBox: new PSPDFKit.Geometry.Rect({
    left: 90,
    top: 90,
    width: 200,
    height: 200,
  }),
});

Extends

Members

Methods




Members

blendMode: PSPDFKit.BlendMode

The blend mode defines how the color of the annotation will be applied to its background.

Type:
Default Value:
  • "normal"

boundingBox: PSPDFKit.Geometry.Rect

Position of this annotation on the page. It's necessary that this spans all visible points of the annotation, otherwise hit testing and other features may not work.

Type:

(readonly) canSetGroup: boolean

This property defines whether the user has permission to edit the group of this annotation.

It is only available when collaboration permissions is enabled on Server-Backed deployments.

Type:
  • boolean

createdAt: Date

The date of the annotation creation.

Type:
  • Date

(nullable) creatorName: string

The name of the creator of the annotation. This is a general purpose string which can easily be spoofed and might not reflect the actual creator of the annotation.

Type:
  • string

(nullable) customData: object

Annotations can store additional user-specified data.

PSPDFKit will not use or evaluate customData in the UI directly. You have full control over this property. For new annotations, this defaults to null.

customData will be stored as JSON through JSON.serialize() and JSON.parse(), and so must be a plain JSON-serializable object.

Type:
  • object
Example

Adding a new PSPDFKit.Annotations.EllipseAnnotation with custom data attached:

const annotation = new PSPDFKit.Annotations.EllipseAnnotation({
  pageIndex: 0,
  boundingBox: new PSPDFKit.Geometry.Rect({
    top: 10,
    left: 10,
    width: 100,
    height: 100
  }),
  customData: {
    circleId: "my-circle"
  }
});

A point tuple with x and y coordinates of the line ending point.

If no ending point is provided, the annotation will not be visible.

Type:

(nullable) fillColor: PSPDFKit.Color

A PSPDFKit.Color to fill the interior of closed shapes (ellipses, rectangles and polygons) or start and / or end line caps of open shapes (lines and polylines).

Type:
Default Value:
  • null

group: string

This property is used to define the permission scope for this annotation.

It is only available when collaboration permissions is enabled on Server-Backed deployments.

Type:
  • string

hidden: boolean

If set, do not display or print the annotation or allow it to interact with the user.

Type:
  • boolean
Default Value:
  • false

id: string

A unique identifier to describe the annotation. When an annotation is created in the UI, the viewer has to generate a unique ID.

When changes are saved to the underlying annotation provider, we call PSPDFKit.Instance#ensureAnnotationSaved to make sure the annotation has been persisted from the provider.

Type:
  • string

(readonly) isDeletable: boolean

This property defines whether this annotation can be deleted or not. The value of this field depends on the set of collaboration permissions defined in the JWT token.

It is only available when collaboration permissions is enabled on Server-Backed deployments.

Type:
  • boolean

(readonly) isEditable: boolean

This property defines whether this annotation can be edited or not. The value of this field depends on the set of collaboration permissions defined in the JWT token.

It is only available when collaboration permissions is enabled on Server-Backed deployments.

Type:
  • boolean

(nullable) lineCaps: LineCapsType

An object with start and / or end entries for line caps.

Line caps can have one of these values: "square", "circle", "diamond", "openArrow", "closedArrow", "butt", "reverseOpenArrow", "reverseClosedArrow" or "slash".

If the fillColor field is provided, its value is used as fill color for the line cap interior.

Type:
  • LineCapsType

locked: boolean

The annotation flag that prevents the annotation from being modified.

Type:
  • boolean
Default Value:
  • false

lockedContents: boolean

The annotation flag that prevents the annotation content from being modified.

Type:
  • boolean
Default Value:
  • false

measurementPrecision: PSPDFKit.MeasurementPrecision

The PSPDFKit.MeasurementPrecision used to set the precision for the annotation.

Type:
Default Value:
  • PSPDFKit.MeasurementPrecision.TWO

measurementScale: PSPDFKit.MeasurementScale

The PSPDFKit.MeasurementScale used to set the scale for the annotation.

Type:

(nullable) name: string

An optional field that may be used to identify the annotation.

By default, we'll set that to the same value as the automatically generated PSPDFKit.Annotations.Annotation#id.

Type:
  • string

noPrint: boolean

The annotation flag that prevents the annotation from being printed.

Type:
  • boolean
Default Value:
  • false

noView: boolean

The annotation flag that prevents the annotation from being rendered in the UI.

The annotation may still be part of the printed page, depending of the value of the PSPDFKit.Annotations.Annotation#noPrint flag.

Type:
  • boolean
Default Value:
  • false

(nullable) note: string

An optional note that can be set on any annotation.

This value is displayed in the PSPDFKit for Web UI for all annotations except NoteAnnotation, TextAnnotation, WidgetAnnotation and CommentMarkerAnnotation.

Type:
  • string

opacity: number

A transparency value that is applied to the complete annotation. The value is capped between 0 and 1 inclusive.

Type:
  • number
Default Value:
  • 1

pageIndex: number

The page index on which the annotation is placed. It's important to notice that an annotation can only ever be on one page. If you create for example an ink annotation with lines on two pages, two annotation records will be created.

pageIndex is zero-based and has a maximum value of totalPageCount - 1.

Type:
  • number

(nullable) pdfObjectId: number

When the annotation is extracted directly from a PDF file, the pdfObjectId refers to the identifier that was used in the PDF document.

This ID is optional since newly created annotations using the SYNCProvider annotation provider won't have a pdfObjectId assigned.

Type:
  • number
Default Value:
  • null

readOnly: boolean

The annotation flag that makes the annotation read only.

Type:
  • boolean
Default Value:
  • false

A point tuple with x and y coordinates of the line starting point.

If no starting point is provided, the annotation will not be visible.

Type:

(nullable) strokeColor: PSPDFKit.Color

A PSPDFKit.Color for the shape lines

Type:
Default Value:
  • Color.BLUE

(nullable) strokeDashArray: Array.<number>

Optional dash pattern used to draw the shape lines for dashed line style.

Type:
  • Array.<number>

strokeWidth: number

The width of the line in page size pixels. By default, we use values between 1 and 40 in the UI.

The stroke width will scale when you zoom in.

Type:
  • number
Default Value:
  • 5

(nullable) subject: string

An optional annotation subject, representing a short description of the subject being addressed by the annotation. This property has no effect on the annotation rendering.

Type:
  • string

updatedAt: Date

The date of last annotation update.

Type:
  • Date

Methods

getMeasurementDetails() → {object}

A method the returns the measurement value and label of the annotation.

Returns:
Type
object
Example
const { value, label } = annotation.getMeasurementDetails();

console.log(value, label);

isMeasurement() → {boolean}

A method that tels whether the annotation is a measurement annotation.

Returns:
Type
boolean