Frameworks
React Native
Flutter
Version 10
Version 9
Version 8
Version 7
Version 6
Version 5
This section is for some static methods for global library initialization, configuration, and utility. They could only be callable as a plugin. Below is an example for initialize
:
Obtains Apryse SDK version.
Obtains the current platform version.
Initializes Apryse SDK with your Apryse commercial license key. You can run Apryse in demo mode by not passing in a string, or by passing an empty string.
Required
your Apryse license key
Returns a Future.
Demo mode:
Using commercial license key:
Changes the orientation of this activity. Android only.
For more information on the native API, see the Android API reference.
Required
A PTOrientation orientation constant.
Returns a Future.
This section is for viewer related non-static methods. They would be callable in both plugin and widget versions. For example, openDocument
is accessible in 2 ways:
Plugin:
Widget (DocumentViewController):
You must choose either the widget or plugin, and use it for all APIs. Mixing widget and plugin APIs will not function correctly. For more information, see Widget or Plugin.
There are several custom classes used in these APIs: Annot, AnnotWithRect, Field, Rect, AnnotFlag, AnnotWithFlag and CustomToolbar. These classes are listed in Options, and the constants that are used in the examples below are all listed in Constants.
Opens a document in the viewer with configurations.
Required
path to the document
password to an encrypted document
viewer configuration options
Returns a Future that would resolve when document is loaded.
For details regarding the config, please see Viewer Configurations.
Saves the currently opened document in the viewer and get the absolute path to the document. Must only be called when the document is opened in the viewer.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
path | string | the location of the saved document |
Returns the path of the current document.
Returns a Future.
Name | Type | Description |
---|---|---|
path | string | the document path |
Displays the annotation tab of the existing list container. If this tab has been disabled, the method does nothing.
Returns a Future that resolves when the view has loaded.
Displays the bookmark tab of the existing list container. If this tab has been disabled, the method does nothing.
Returns a Future that resolves when the view has loaded.
Displays the outline tab of the existing list container. If this tab has been disabled, the method does nothing.
Returns a Future that resolves when the view has loaded.
On Android it displays the layers dialog while on iOS it displays the layers tab of the existing list container. If this tab has been disabled or there are no layers in the document, the method does nothing.
Returns a Future that resolves when the view has loaded.
Displays the existing list container. Its current tab will be the one last opened.
Returns a Future that resolves when the view has loaded.
Sets the file name of the icon to be used for the leading navigation button. The button will use the specified icon if showLeadingNavButton
(which by default is true) is true in the config.
the icon path to the navigation button
Returns a Future.
Note: to add the image file to your application, please follow the steps below:
Android
1. Add the image resource to the example/android/app/src/main/res/drawable
directory. For details about supported file types and potential compression, check out Create drawables from resource images.
2. Now you can use the image in the viewer. For example, if you add button_close.png
to drawable, you could use 'button_close'
in leadingNavButtonIcon.
iOS
1. After pods has been installed, open the .xcworkspace file for this application in Xcode (in this case, it's Runner.xcworkspace
), and navigate through the list below. This would allow you to add resources, in this case, an image, to your project.
2. Now you can use the image in the viewer. For example, if you add button_open.png
to the bundle, you could use 'button_open.png'
in leadingNavButtonIcon.
Sets the current tool mode.
One of Tools
string constants, representing the tool mode to set
Returns a Future.
Commits the current tool, only available for multi-stroke ink and poly-shape.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
committed | bool | true if either ink or poly-shape tool is committed, false otherwise |
Sets current page of the document. Page numbers are 1-indexed.
the page number to be set as the current page; 1-indexed
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
success | bool | whether the setting process is successful. |
Gets current page of the document. Page numbers are 1-indexed.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
currentPage | int | the current page of the current document |
Gets the total number of pages in the currently displayed document.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
pageCount | int | the page count of the current document |
Gets a map object of the crop box for specified page.
the page number for the target crop box; 1-indexed
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
cropBox | Rect | the crop box information map. It contains information for position (bottom-left: x1, y1; top-right: x2, y2) and size (width, height) |
Gets the rotation value of the specified page in the current document.
the page number for the target page. It is 1-indexed
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
pageRotation | int | the rotation degree of the page, one of 0, 90, 180 or 270 (clockwise). |
Go to the previous page of the document. If on first page, it will stay on first page.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
pageChanged | bool | whether the setting process was successful (no change due to staying in first page counts as being successful) |
Go to the next page of the document. If on last page, it will stay on last page.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
pageChanged | bool | whether the setting process was successful (no change due to staying in last page counts as being successful) |
Go to the first page of the document.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
pageChanged | bool | whether the setting process was successful |
Go to the last page of the document.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
success | bool | whether the setting process was successful |
Imports remote annotation command to local document. The XFDF needs to be a valid command format with <add><modify><delete>
tags.
Parameters:
Name | Type | Description |
---|---|---|
xfdfCommand | String | the XFDF command string for import |
Imports XFDF annotation string to current document.
Parameters:
Name | Type | Description |
---|---|---|
xfdf | String | annotation string in XFDF format for import |
Returns a Future.
Extracts XFDF from the current document. If annotationList
is null, export all annotations from the document; else export the valid ones specified.
Parameters:
Name | Type | Description |
---|---|---|
annotationList | List of Annot | If not null, export the XFDF string for the valid annotations; Otherwise, export the XFDF string for all annotations in the current document. |
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
xfdf | String | annotation string in XFDF format |
Exports all annotations:
Exports specified annotations:
Flattens the forms and (optionally) annotations in the current document.
Parameters:
Name | Type | Description |
---|---|---|
formsOnly | bool | Defines whether only forms are flattened. If false, all annotations will be flattened. |
Returns a Future.
Deletes the specified annotations in the current document.
Parameters:
Name | Type | Description |
---|---|---|
annotations | List of Annot | the annotations to be deleted |
Returns a Future.
Deletes all annotations in the current document excluding links and widgets.
Returns a Future.
PdftronFlutter.deleteAllAnnotations();
Selects the specified annotation in the current document.
Parameters:
Name | Type | Description |
---|---|---|
annotations | Annot | the annotation to be selected |
Returns a Future.
PdftronFlutter.selectAnnotation(new Annot('Hello', 1));
Sets flags for specified annotations in the current document.
Parameters:
Name | Type | Description |
---|---|---|
annotationWithFlagsList | List of AnnotWithFlags | a list of annotations with respective flags to be set |
Returns a Future.
Sets properties for specified annotation in the current document.
Parameters:
Name | Type | Description |
---|---|---|
annotation | Annot | Annot the annotation to be modified |
property | AnnotProperty | the properties to be set for the target annotation |
For settable properties:
Name | Type | Markup exclusive |
---|---|---|
rect | Rect | no |
contents | String | no |
subject | String | yes |
title | String | yes |
contentRect | Rect | yes |
rotation | int | no |
Sets a field flag value on one or more form fields.
Parameters:
Name | Type | Description |
---|---|---|
fieldNames | List of String | list of field names for which the flag should be set |
flag | int | the flag to be set, one of the constants from FieldFlags |
flagValue | bool | value to set for flag |
Returns a Future.
PdftronFlutter.setFlagForFields(['First Name', 'Last Name'], FieldFlags.Required, true);
Sets field values on one or more form fields of different types.
Parameters:
Name | Type | Description |
---|---|---|
fields | List of Field | A list of fields; each field must be set with a name and a value. The value's type can be number, bool or string. |
Returns a Future.
Handles the back button in search mode. Android only.
Returns a Future.
Future Parameters:
Name | Type | Description |
---|---|---|
handled | bool | whether the back button is handled successfully |
Imports user bookmarks into the document. The input needs to be a valid bookmark JSON format.
Parameters:
Name | Type | Description |
---|---|---|
bookmarkJson | String | The bookmark json for import. It needs to be in valid bookmark JSON format, for example {"0": "Page 1"}. The page numbers are 1-indexed |
Returns a Future.
PdftronFlutter.importBookmarkJson("{\"0\": \"Page 1\", \"3\": \"Page 4\"}");
Creates a new bookmark with the given title and page number.
Parameters:
Name | Type | Description |
---|---|---|
title | String | Title of the bookmark |
pageNumber | int | The page number of the new bookmark. It is 1-indexed. |
Returns a Future.
PdftronFlutter.addBookmark("Page 7", 6);
Closes all documents that are currently opened in a multiTab environment (that is, multiTabEnabled
is true in the config).
Returns a Future.
PdftronFlutter.closeAllTabs();
This section contains all the event listeners you could attach to the viewer.
Event is raised when the document finishes loading.
Event Parameters:
Name | Type | Description |
---|---|---|
path | String | the path to where the document is saved |
Event is raised when the document has errors when loading.
Event is raised when the leading navigation button is pressed.
Event is raised when the current page changes.
Event Parameters:
Name | Type | Description |
---|---|---|
previousPageNumber | int | the previous page number |
pageNumber | int | the current page number |
Event is raised when a page has been moved in the document.
Event Parameters:
Name | Type | Description |
---|---|---|
previousPageNumber | int | the previous page number |
pageNumber | int | the current page number |
Event is raised when local annotation changes committed to the document.
Event Parameters:
Name | Type | Description |
---|---|---|
xfdfCommand | String | the XFDF command string exported |
Event is raised when there is a change to annotations to the document.
Event Parameters:
Name | Type | Description |
---|---|---|
action | String | the action that occurred (add, delete, modify) |
annotations | List of Annot | the annotations that have been changed |
Event is raised when annotations are selected.
Event Parameters:
Name | Type | Description |
---|---|---|
annotationWithRects | List of AnnotWithRect | The list of annotations with their respective rects |
Event is raised when there are changes to form field values.
Event Parameters:
Name | Type | Description |
---|---|---|
fields | List of Field | the fields that are changed |
Event is raised on annotation menu pressed if it is passed into overrideAnnotationMenuBehavior
.
Event Parameters:
Name | Type | Description |
---|---|---|
annotationMenuItem | one of the AnnotationMenuItems constants | The menu item that has been pressed |
annotations | List of Annot | The annotations associated with the menu |
Event is raised on long press menu pressed if it is passed into overrideLongPressMenuBehavior
.
Event Parameters:
Name | Type | Description |
---|---|---|
longPressMenuItem | one of the LongPressMenuItems constants | The menu item that has been pressed |
longPressText | string | The selected text if pressed on text, empty otherwise |
Event is raised on certain behaviors, if any is passed into overrideBehavior
.
action | String, one of the Behaviors
constants | The behavior which has been activated data | map | detailed information regarding the behavior
Event is raised when user bookmark changes committed to the document.
Event Parameters:
Name | Type | Description |
---|---|---|
bookmarkJson | String | the bookmark json string exported |
Event is raised when zoom ratio is changed in the current document.
Event Parameters:
Name | Type | Description |
---|---|---|
zoom | double | the zoom ratio in the current document viewer |
This section is the configuration part of the openDocument
function. You could also refer to Config for all mutable properties.
map<string, string>, defaults to empty.
Defines custom headers to use with HTTP/HTTPS requests.
config.customHeaders = {'headerName': 'headerValue'};
bool, defaults to false.
Defines whether the viewer is read-only. If true, the UI will not allow the user to change the document.
config.readOnly = true;
one of the DefaultEraserType
constants, optional
Sets the default eraser tool type. Value only applied after a clean install.
Eraser TypeDescriptionannotationEraser
Erases everything as an object; if you touch ink, the entire object is erased.hybrideEraser
Erases ink by pixel, but erases other annotation types as objects.inkEraser
Erases ink by pixel only. Android only.
config.defaultEraserType = DefaultEraserType.inkEraser;
bool, defaults to false.
If true, document in openDocument
will be treated as a base64 string.
When viewing a document initialized with a base64 string (i.e. a memory buffer), a temporary file is created on Android, but not on iOS. (If you need access to a file-backed PDF on iOS, save the base64 string to disk, and open the file located at that path.)
config.isBase64String = true;
String, defaults to .pdf, required if using base64 string of a non-pdf file.
Defines the file extension for the base64 string in document, if isBase64String
is true.
array of Buttons
constants, defaults to none.
Defines buttons to be disabled for the viewer.
var disabledElements = [Buttons.shareButton, Buttons.searchButton];
config.disabledElements = disabledElements;
array of Tools
constants, defaults to none.
Defines tools to be disabled for the viewer.
var disabledTools = [Tools.annotationCreateLine, Tools.annotationCreateRectangle];
config.disabledTools = disabledTools;
bool, defaults to true.
Defines whether to show the leading navigation button.
config.showLeadingNavButton = true;
array of CustomToolbar
objects or DefaultToolbars
constants.
Defines custom toolbars. If passed in, the set of default toolbars will no longer appear. It is possible to mix and match with default toolbars. See example below:
array of DefaultToolbars
constants, defaults to none.
Defines which default annotation toolbars should be hidden. Note that this should be used when annotationToolbars
is not defined.
bool, defaults to false.
Defines whether to show the toolbar switcher in the top toolbar.
config.hideAnnotationToolbarSwitcher = true;
bool, defaults to false.
Defines whether to hide both the top app nav bar and the annotation toolbar.
config.hideTopToolbars = true;
bool, defaults to false.
Defines whether to hide the top navigation app bar.
config.hideTopAppNavBar = true;
bool, defaults to false.
Defines whether to hide the bottom toolbar for the current viewer.
config.hideBottomToolbar = true;
one of the FitModes
constants, default value is 'FitWidth'.
Defines the fit mode (default zoom level) of the viewer.
config.fitMode = FitModes.fitHeight;
one of the LayoutModes
constants, default value is 'Continuous'.
Defines the layout mode of the viewer.
config.layoutMode = LayoutModes.facingCover;
number, optional.
Defines the initial page number that viewer displays when the document is opened. Note that page numbers are 1-indexed.
config.initialPageNumber = 5;
bool, defaults to true.
Defines whether the viewer should change pages when the user taps the edge of a page, while the viewer is in a horizontal viewing mode.
config.pageChangeOnTap = true;
bool, defaults to true.
Defines whether to show the page indicator for the viewer.
config.pageIndicatorEnabled = true;
bool, defaults to false.
Defines whether the page indicator will always be visible.
config.pageNumberIndicatorAlwaysVisible = true;
bool, defaults to false.
Defines whether annotation's flags will be taken into account when it is selected, for example, an annotation with a locked flag can not be resized or moved.
config.annotationPermissionCheckEnabled = true;
String.
Defines the author name for all annotations created on the current document. Exported xfdfCommand will include this piece of information.
config.annotationAuthor = 'Apryse';
bool, defaults to true.
If true, the active annotation creation tool will remain in the current annotation creation tool. Otherwise, it will revert to the "pan tool" after an annotation is created.
config.continuousAnnotationEditing = true;
bool, defaults to true.
Defines whether an annotation is selected after it is created. On iOS, this functions for shape and text markup annotations only.
config.selectAnnotationAfterCreation = true;
array of Tools
constants, defaults to none.
Defines annotation types that cannot be edited after creation.
config.disableEditingByAnnotationType = [Tools.annotationCreateTextSquiggly, Tools.annotationCreateTextHighlight, Tools.annotationCreateEllipse];
array of Tools
constants, defaults to none
Defines annotation types that will not show the default annotation menu.
config.hideAnnotationMenu = [Tools.annotationCreateArrow, Tools.annotationEraserTool];
array of AnnotationMenuItems
constants, default contains all items
Defines the menu items that can show when an annotation is selected.
config.annotationMenuItems = [AnnotationMenuItems.search, AnnotationMenuItems.share];
array of AnnotationMenuItems
constants, defaults to none
Defines the menu items that will skip default behavior when pressed. They will still be displayed in the annotation menu, and the event handler startAnnotationMenuPressedListener
will be called from which custom behavior can be implemented.
config.overrideAnnotationMenuBehavior = [AnnotationMenuItems.copy];
bool, defaults to true
Defines whether to show the popup menu of options after the user long presses on text or blank space on the document.
config.longPressMenuEnabled = false;
array of LongPressMenuItems
constants, optional, default contains all the items
Defines menu items that can be shown when long pressing on text or blank space.
config.longPressMenuItems = [LongPressMenuItems.search, LongPressMenuItems.share];
array of LongPressMenuItems
constants, optional, defaults to none
Defines the menu items on long press that will skip default behavior when pressed. They will still be displayed in the long press menu, and the event handler startLongPressMenuPressedListener
will be called where custom behavior can be implemented.
config.overrideLongPressMenuBehavior = [LongPressMenuItems.copy];
array of Behaviors
constants, defaults to false.
Defines actions that should skip default behavior, such as external link click. The event handler startBehaviorActivatedListener
will be called when the behavior is activated, where custom behavior can be implemented.
config.overrideBehavior = [Behaviors.linkPress];
bool, defaults to false.
Defines whether viewer will use tabs in order to have more than one document open simultaneously (like a web browser). Calling openDocument
with this value being true will cause a new tab to be opened with the associated document.
config.multiTabEnabled = true;
String, default is the file name.
Sets the tab title if multiTabEnabled
is true. (For Android, tabTitle is only supported on the widget viewer)
config.tabTitle = 'tab1';
bool, defaults to false.
Defines whether signature fields will be signed with image stamps. This is useful if you are saving XFDF to remote source.
config.signSignatureFieldsWithStamps = true;
bool, defaults to true.
Defines whether to show saved signatures for re-use when using the signing tool.
config.showSavedSignatures = true;
bool, defaults to true.
Defines whether user can modify the document using the thumbnail view (e.g. add/remove/rotate pages).
config.thumbnailViewEditingEnabled = false;
array of ThumbnailFilterModes
constants, defaults to none.
Defines filter Modes that should be hidden in the thumbnails browser.
config.hideThumbnailFilterModes = [ThumbnailFilterModes.annotated];
array of ViewModePickerItem
constants, optional, defaults to none.
Defines view mode items to be hidden in the view mode dialog.
config.hideViewModeItems=[ViewModePickerItem.ColorMode, ViewModePickerItem.Crop];
bool, dafaults to true.
Defines whether document is automatically saved by the viewer.
config.autoSaveEnabled = true;
bool, defaults to true.
Defines whether a stylus should act as a pen when in pan mode. If false, it will act as a finger.
config.useStylusAsPen = true;
bool, Android only, defaults to true.
Defines whether the UI will appear in a dark color when the system is dark mode. If false, it will use viewer setting instead.
config.followSystemDarkMode = false;
Did you find this helpful?
Trial setup questions?
Ask experts on DiscordNeed other help?
Contact SupportPricing or product questions?
Contact Sales