ComPDFKit React Native supports TypeScript. Types used in this document will be described using TypeScript types. Type information is automatically provided when encoding, and the exact type aliases and constants used in our custom types can be found in the CPDFConfiguration and CPDFOptions source folders.
ComPDFKit contains static methods for global library initialization, configuration, and utility methods.
Initialize the ComPDFKit SDK offline using your ComPDFKit commercial license key. Please contact our sales to obtain a trial license.
Parameters:
Name | Type | Description |
---|---|---|
license | String | Your ComPDFKit license key |
Returns a Promise.
Name | Type | Description |
---|---|---|
result | boolean | Returns true if initialization is successful, otherwise returns false . |
ComPDFKit.init_('your compdfkit license')
Use your ComPDFKit commercial license key to initialize the ComPDFKit SDK using online authentication. Please contact our sales to obtain a trial license.
Parameters:
Name | Type | Description |
---|---|---|
androidOnlineLicense | string | Your ComPDFKit for React Native Android online license key. |
iosOnlineLicense | string | Your ComPDFKit for React Native iOS online license key. |
Returns a Promise.
Name | Type | Description |
---|---|---|
result | boolean | Returns true if initialization is successful, otherwise returns false . |
ComPDFKit.initialize('android online license', 'ios online license')
Get the version number of the ComPDFKit SDK.
For example: '2.0.1'
Returns a Promise.
Name | Type | Description |
---|---|---|
versionCode | String | the version number of the ComPDFKit SDK. |
ComPDFKit.getVersionCode().then((versionCode : string) => {
console.log('ComPDFKit SDK Version:', versionCode)
})
Get the build tag of the ComPDFKit PDF SDK.
For example: "build_beta_2.0.0_42db96987_202404081007"
Returns a Promise.
Name | Type | Description |
---|---|---|
buildTag | String | the build tag of the ComPDFKit PDF SDK. |
ComPDFKit.getSDKBuildTag().then((buildTag : string) => {
console.log('ComPDFKit Build Tag:', buildTag)
})
Used to present a PDF document.
Parameters:
Name | Type | Description |
---|---|---|
document | string | The path to the PDF document to be presented. |
password | string | PDF document password. |
configuration | string | Configuration objects to customize the appearance and behavior of ComPDFKit. |
(Android) For local storage file path:
document = '/storage/emulated/0/Download/PDF_document.pdf'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
(Android) For content Uri:
document = 'content://...'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
document = "file:///android_asset/..."
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
document = 'pdf_document.pdf'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
When using the ComPDFKit.openDocument
method or the CPDFReaderView
UI component to display a PDF file, you need to pass configuration parameters to customize the UI features and PDF view properties. ComPDFKit
provides default configuration parameters through ComPDFKit.getDefaultConfig
. You can retrieve them using the following example:
ComPDFKit.getDefaultConfig({})
You can modify certain parameters to meet your requirements. Here are some usage examples:
ComPDFKit.getDefaultConfig({
modeConfig: {
initialViewMode: CPDFViewMode.VIEWER,
availableViewModes: [
CPDFViewMode.VIEWER,
CPDFViewMode.ANNOTATIONS
]
}
})
ComPDFKit.getDefaultConfig({
annotationsConfig:{
availableType:[
CPDFAnnotationType.NOTE
],
availableTools:[
CPDFConfigTool.SETTING,
CPDFConfigTool.UNDO,
CPDFConfigTool.REDO
],
initAttribute:{
note:{
color: '#1460F3',
alpha: 255
}
}
}
})
3.Setting the display mode and page turning direction:
ComPDFKit.getDefaultConfig({
readerViewConfig:{
displayMode: CPDFDisplayMode.DOUBLE_PAGE,
verticalMode: false
}
})
For more configuration parameter descriptions, please see CPDFCONFIGURATION.md.
CPDFReaderView
is a React component designed to display PDF documents. Below are details about the required document
prop.
Specifies the path or URI of the PDF document to be displayed.
string
**Usage Examples:
<CPDFReaderView
document={'/storage/emulated/0/Download/PDF_document.pdf'}/>
<CPDFReaderView
document={'content://...'}/>
<CPDFReaderView
document={'file:///android_asset/...'}/>
<CPDFReaderView
document={'pdf_document.pdf'}/>
The password to open the document is an optional parameter.
string
Usage Examples:
<CPDFReaderView
document={'pdf_document.pdf'}
password={'password'}/>
Used to pass configuration parameters when rendering a PDF file to customize UI features and PDF view properties. ComPDFKit
provides default configuration parameters through ComPDFKit.getDefaultConfig
.
string
Usage Examples:
<CPDFReaderView
document={samplePDF}
configuration={ComPDFKit.getDefaultConfig({
})}
style={{flex:1}}
/>