Package: pdf

stateDiagram-v2
    direction LR
    Invited --> Active: Accept invitation (guest)
    Invited --> InvitationCancelled: Cancel invitation (owner)
    Invited --> InvitationRejected: Reject invitation (guest)
    Invited --> InvitationExpired: Expire Invitation (system)
    InvitationExpired --> Invited: Reinvite (owner)
    InvitationRejected --> Invited: Reinvite (owner)
    InvitationCancelled --> Invited: Reinvite (owner)
    Active --> Disabled: Disable (owner)
    Disabled --> Active: Enable (owner)
    Active --> InvitationRejected: Reject invitation (guest)
    Disabled --> InvitationRejected: Reject invitation (guest)

Examples

Write text on an existing PDF

workflow PDFExample1;

method main() {
  //Open the document with key 100
  var document = pdf->open(100);
  var pageIndex = 1;
  var top = 100;
  var left = 150;
  var size = 32;
  var text = "Hello world";

  pdf->writeText(document, pageIndex, top, left, size, text);

  //Update the file
  pdf->update(document, 100);

  //Save the updated document to as new. The original document will remain unchanged.
  var newStorageFileKey = pdf->save(document, "new-document-name.pdf");
}

Extract a page range and save to new PDF

workflow PDFExample2;

method main() {
  //Open the document with key 100
  var document = pdf->open(100);
  var startPage = 1;
  var endPage = 3;

  var newDocument = pdf->extractPages(document, startPage, endPage);

  //Save the new document. The original document will remain unchanged.
  newDocument.fileName = "extracted.pdf";
  var newStorageFileKey = pdf->save(newDocument);
}

Methods

addPage

function addPage(doc as pdfdocument) as int

Adds a new empty page to the document with size A4.

addPageWithSize

function addPageWithSize(doc as pdfdocument, width as decimal, height as decimal) as int

Adds a new empty page to the document with the specified size.

convertPageToImage

function convertPageToImage(doc as pdfdocument, page as int, fileName as string, format as int, dpi as int) as int

Converts one page from a PDF document to the specified image format.

format argument is one of the following:

  • 0 for BMP
  • 1 for JPEG
  • 2 for WBMP
  • 3 for PNG
  • 4 for GIF
  • 5 for TIFF
  • anything else for JPEG.

copyPage

function copyPage(src as pdfdocument, page as int, dest as pdfdocument) as int

Copies a page from src document, appending it to the end of the dest PDF document.

copyPageAtIndex

method copyPageAtIndex(src as pdfdocument, page as int, dest as pdfdocument, index as int, overwrite as boolean)

Copies a page from src document, inserting it at the specified index of the dest PDF document between the existing pages. If overwrite is true, then the page at the specified index is replaced in the dest PDF document.

create

function create() as pdfdocument

Creates a new PDF document with one empty page with size A4.

createWithSize

function createWithSize(width as decimal, height as decimal) as pdfdocument

Creates a new PDF document with one empty page with the specified size.

drawBarcode

method drawBarcode(doc as pdfdocument, page as int, barcode as pdfbarcode)

Renders a barcode on the specified PDF page.

drawImage

method drawImage(doc as pdfdocument, page as int, image as pdfimage)

Draws an image on the specified PDF page.

drawRectangle

method drawRectangle(doc as pdfdocument, page as int, rectangle as pdfrectangle)

Draws a rectangle on the specified page.

embedFile

method embedFile(doc as pdfdocument, storageFileKey as int)

Embeds a file into the PDF document.

extractPages

function extractPages(doc as pdfdocument, startPage as int, endPage as int) as pdfdocument

Extracts a range of pages from a PDF document into a new document.

getFieldNames

function getFieldNames(form as pdfform, fieldName as string) as list of string

Returns a list of all acro field names.

getCheckBoxFieldValue

function getCheckBoxFieldValue(form as pdfform, fieldName as string) as bool

Returns the value of a CHECKBOX_FIELD. Throws an error if the field type does not match.

getChoiceFieldValues

function getChoiceFieldValues(form as pdfform, fieldName as string) as list of string

Returns the value of a CHOICE_FIELD. Throws an error if the field type does not match.

getFieldType

function getFieldType(form as pdfform, fieldName as string) as int

Returns the type of the field identified by fieldName or null if no such field exists.

The return value is one of the following:

  • 0 the field is BUTTON_FIELD
  • 1 the field is TEXT_FIELD
  • 2 the field is CHOICE_FIELD
  • 3 the field is CHECKBOX_FIELD

getImage

function getImage(doc as pdfdocument, page as int, image as pdfimage) as byte[]

Retrieves the image data from the specified PDF page and image object.

getPageCount

function getPageCount(doc as pdfdocument) as int

Returns the number of pages in a PDF document.

getPageHeight

function getPageHeight(doc as pdfdocument, page as int) as decimal

Returns the height of the page.

getPageWidth

function getPageWidth(doc as pdfdocument, page as int) as decimal

Returns the width of the page.

getSignatures

function getSignatures(storageFileKey as int) as list of documentsignature

Returns the signatures for the PDF document with the specified storageFileKey.

getSignaturesAtVersion

function getSignaturesAtVersion(storageFileKey as int, storageVersion as int) as list of documentsignature

Returns the signatures for the PDF document with the specified storageFileKey and storageVersion.

getTextLineSize

function getTextLineWidth(doc as pdfdocument, text as pdftextline) as pdfsize

Size of rendered text.

getTextSize

function getTextWidth(doc as pdfdocument, fontSize as decimal, text as string) as pdfsize

Size of rendered text.

getTextFieldValue

function getTextFieldValue(form as pdfform, fieldName as string) as string

Returns the value of a TEXT_FIELD. Throws an error if the field type does not match.

merge

function merge(docA as pdfdocument, docB as pdfdocument) as pdfdocument

Merges two PDF documents into a new PDF document. The merge is done by copying all the pages from docA to the new document and after that copying all the pages from docB to the new document.

open

function open(storageFileKey as int) as pdfdocument

Opens an existing PDF document.

openAtVersion

function openAtVersion(storageFileKey as int, version as int) as pdfdocument

Opens an existing version of a PDF document.

removePage

method insertPage(doc as pdfdocument, page as int)

Removes a page from the document.

removeSignatures

function removeSignatures(storageFileKey as int, storageVersion as int) as int

Removes the signature fields of the PDF document with the specified storageFileKey and storageVersion.

save

function save(doc as pdfdocument) as int

Saves the PDF document to storage.

scanBarcodes

function scanBarcodes(doc as pdfdocument, dpi as int) as list of pdfbarcode

sign

function sign(storageFileKey as int, storageVersion as int, pin as string, libraryPath as string

) as int

Signs the PDF document with the specified storageFileKey and storageVersion.

update

function update(doc as pdfdocument, key as int) as int

Updates the PDF document in storage.

writeText

method writeText(doc as pdfdocument, page as int, top as decimal, left as decimal, fontSize as decimal, text as string)

Writes the text at the specified page and offset. top: to be offset from the top of the page; left: to be offset from the left of the page.

writeTextLine

method writeTextLine(doc as pdfdocument, page as int, text as pdftextline)

Writes text at the specified page.

Constants

fontName

string constant:192.168.5.150

  • TIMES_ROMAN
  • TIMES_BOLD
  • TIMES_ITALIC
  • TIMES_BOLD_ITALIC
  • HELVETICA
  • HELVETICA_BOLD
  • HELVETICA_OBLIQUE
  • HELVETICA_BOLD_OBLIQUE
  • COURIER
  • COURIER_BOLD
  • COURIER_OBLIQUE
  • COURIER_BOLD_OBLIQUE
  • SYMBOL
  • ZAPF_DINGBATS
  • Abeer
  • Arial
  • DejaVuSansCondensed-Bold

codeType

int constant:

  • 0 - AZTEC
  • 1 - CODABAR
  • 2 - CODE_39
  • 3 - CODE_93
  • 4 - CODE_128
  • 5 - DATA_MATRIX
  • 6 - EAN_8
  • 7 - EAN_13
  • 8 - ITF
  • 9 - MAXICODE
  • 10 - PDF_417
  • 11 - QR_CODE
  • 12 - RSS_14
  • 13 - RSS_EXPANDED
  • 14 - UPC_A
  • 15 - UPC_E
  • 16 - UPC_EAN_EXTENSION
graph TD
  A[Hard] -->|Text| B(Round)
  B --> C{Decision}
  C -->|One| D[Result 1]
  C -->|Two| E[Result 2]