Library to obtain the pages of a pdf in image format
npm install react-native-pdf-page-imagesh
npm install react-native-pdf-page-image
`
#### iOS
$ cd ios & pod install
Usage
Importing the Module
`js
import PdfPageImage from 'react-native-pdf-page-image';
`
$3
You can generate images for all pages in a PDF document with the following method:
`js
const uri = "https://pdfobject.com/pdf/sample.pdf";
const scale = 1.0;
// Generate images from all pages
PdfPageImage.generateAllPages(uri, scale)
.then(images => images.forEach((image, index) => console.log(Page ${index+1}: ${image.uri}, Width: ${image.width}, Height: ${image.height})))
.catch(error => console.error('Error generating images:', error));
`
$3
If you only need to generate an image for a single page, use the generate method:
`js
const uri = "https://pdfobject.com/pdf/sample.pdf";
const scale = 1.0;
// Generate an image from a specific page
PdfPageImage.generate(uri, 1, scale) // Example uses page number 1
.then(image => console.log(Generated image: ${image.uri}, Width: ${image.width}, Height: ${image.height}))
.catch(error => console.error('Error generating image:', error));
`
$3
To open a PDF document and retrieve its information, use the open method:
`js
PdfPageImage.open(uri)
.then(info => console.log(PDF opened with URI: ${info.uri}, Page count: ${info.pageCount}))
.catch(error => console.error('Error opening PDF:', error));
`
$3
After processing, you can close the PDF document and delete any temporary files that were generated. Use the close method:
`js
PdfPageImage.close(uri)
.then(() => console.log('PDF closed successfully.'))
.catch(error => console.error('Error closing PDF:', error));
`
API
open(uri: string): Promise
Opens a PDF document and returns its basic information.
- uri: Path to the PDF file.
generate(uri: string, page: number, scale?: number): Promise
Generates an image from a specific PDF page.
- uri: Path to the PDF file.
- page: Page number to render.
- scale: Scale of the generated image, optional
generateAllPages(uri: string, scale?: number): Promise
Generates images from all pages of the PDF document.
- uri: Path to the PDF file.
- scale: Scale of the generated images, optional.
close(uri: string): Promise
Clean up resources, deleting temporary files and closing connections..
- uri: Path to the PDF file that is currently open.
Types
`typescript
type PdfInfo = {
uri: string;
pageCount: number;
};
type PageImage = {
uri: string;
width: number;
height: number;
};
``