
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-pdf-lib-fixed
Advanced tools
This library's purpose is to fill the gap that currently exists in the React Native ecosystem for PDF creation and editing. It aims to provide an easy, simple, and consistent API for both creating new and editing existing PDF documents in React Native. This library supports Android devices >= API 18, and iOS devices >= iOS 8.0.
This library would not be possible without the following projects:
Create PDFs from HTML: https://github.com/christopherdro/react-native-html-to-pdf
If you're using React Native >= 60, you want to use v1.0.0 of this library. If you're using React Native <= 59, you want to use v0.2.1 of this library.
See here for manual installation instructions (manual installation should not be necessary).
$ npm install react-native-pdf-lib --save$ react-native link react-native-pdf-libbuild.gradle file:
android {
...
dexOptions {
jumboMode = true
}
...
}
// Import from 'react-native-pdf-lib'
import PDFLib, { PDFDocument, PDFPage } from 'react-native-pdf-lib';
// Create a PDF page with text and rectangles
const page1 = PDFPage
.create()
.setMediaBox(200, 200)
.drawText('You can add text and rectangles to the PDF!', {
x: 5,
y: 235,
color: '#007386',
})
.drawRectangle({
x: 25,
y: 25,
width: 150,
height: 150,
color: '#FF99CC',
})
.drawRectangle({
x: 75,
y: 75,
width: 50,
height: 50,
color: '#99FFCC',
});
// Create a PDF page with text and images
const jpgPath = // Path to a JPG image on the file system...
const pngPath = // Path to a PNG image on the file system...
const page2 = PDFPage
.create()
.setMediaBox(250, 250)
.drawText('You can add JPG images too!')
.drawImage(jpgPath, 'jpg', {
x: 5,
y: 125,
width: 200,
height: 100,
})
.drawImage(pngPath, 'png', {
x: 5,
y: 25,
width: 200,
height: 100,
});
// Create a new PDF in your app's private Documents directory
const docsDir = await PDFLib.getDocumentsDirectory();
const pdfPath = `${docsDir}/sample.pdf`;
PDFDocument
.create(pdfPath)
.addPages(page1, page2)
.write() // Returns a promise that resolves with the PDF's path
.then(path => {
console.log('PDF created at: ' + path);
// Do stuff with your shiny new PDF!
});
// Import from 'react-native-pdf-lib'
import PDFLib, { PDFDocument, PDFPage } from 'react-native-pdf-lib';
// Modify first page in document
const page1 = PDFPage
.modify(0)
.drawText('This is a modification on the first page!', {
x: 5,
y: 235,
color: '#F62727',
})
.drawRectangle({
x: 150,
y: 150,
width: 50,
height: 50,
color: '#81C744',
});
// Modify second page in document
const jpgPath = // in iOS Path to a JPG image on the file system... in Android path to the assert
const pngPath = // in iOS Path to a PNG image on the file system... in Android path to the assert
const page2 = PDFPage
.modify(1)
.drawText('You can add images to modified pages too!')
.drawImage(
jpgPath,
'jpg',
{
x: 5,
y: 125,
width: 200,
height: 100,
source: 'assets' // 'assets' to get image from Android assets 'path' to get image from imagePath
}
)
.drawImage(
pngPath,
'png',
{
x: 5,
y: 25,
width: 200,
height: 100,
source: 'path' // 'assets' to get image from Android assets 'path' to get image from imagePath
}
);
// Create a PDF page to add to document
const page3 = PDFPage
.create()
.setMediaBox(200, 200)
.drawText('You can add new pages to a modified PDF as well!', {
x: 5,
y: 235,
color: '#007386',
});
const existingPDF = 'path/to/existing.pdf';
PDFDocument
.modify(existingPDF)
.modifyPages(page1, page2)
.addPage(page3)
.write() // Returns a promise that resolves with the PDF's path
.then(path => {
console.log('PDF modified at: ' + path);
});
The library includes Times New Roman as the default font. For using other fonts, you must include any of them like this.
"rnpm": {
"assets": [
"./assets/fonts"
]
}
react-native link (so the font will be bundled with your app's assets).This way, you could start using your shiny custom font on your PDF's like this:
const page1 = PDFPage.create()
.setMediaBox(200, 200)
.drawText("This text is using the font Franklin Gothic Medium!", {
x: 5,
y: 235,
color: "#F62727",
fontName: "Franklin Gothic Medium"
});
Measuring some text can be very useful, for example for centering some title, etc.
return PDFLib.measureText(
"My Centered Title",
"Franklin Gothic Medium",
14
).then(result => {
console.log("The text size is: ", result);
});
Libraries ➜ Add Files to [your project's name]node_modules ➜ react-native-pdf-lib and add RNPdfLib.xcodeprojlibRNPdfLib.a to your project's Build Phases ➜ Link Binary With LibrariesCmd+R)<android/app/src/main/java/[...]/MainActivity.javaimport com.reactlibrary.PdfLibPackage; to the imports at the top of the filenew PdfLibPackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-pdf-lib'
project(':react-native-pdf-lib').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-pdf-lib/android')
android/app/build.gradle:
compile project(':react-native-pdf-lib')
build.gradle file:
android {
...
// Add this section:
dexOptions {
jumboMode = true
}
...
}
FAQs
A react native library for handling generating PDFs
We found that react-native-pdf-lib-fixed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.