This module enables React Native applications to generate images from PDF document pages. It uses PDFKit on iOS and PdfRenderer on Android to render PDF pages as images.
npm install react-native-pdf-page-image
$ cd ios & pod install
Importing the Module
import PdfPageImage from 'react-native-pdf-page-image';
You can generate images for all pages in a PDF document with the following method:
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));
If you only need to generate an image for a single page, use the generate method:
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));
To open a PDF document and retrieve its information, use the open method:
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));
After processing, you can close the PDF document and delete any temporary files that were generated. Use the close method:
PdfPageImage.close(uri)
.then(() => console.log('PDF closed successfully.'))
.catch(error => console.error('Error closing PDF:', error));
open(uri: string): Promise<PdfInfo>
Opens a PDF document and returns its basic information.
- uri: Path to the PDF file.
generate(uri: string, page: number, scale?: number): Promise<PageImage>
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<PageImage[]>
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<void>
Clean up resources, deleting temporary files and closing connections..
- uri: Path to the PDF file that is currently open.
type PdfInfo = {
uri: string;
pageCount: number;
};
type PageImage = {
uri: string;
width: number;
height: number;
};
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library