Skip to content
Allows easy conversion from HTML to PDF files.
JavaScript
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
platforms/android
README.md
html2pdf.d.ts
html2pdf.js
package.json

README.md

nativescript-html2pdf

Allows easy conversion from HTML to PDF files. Currently, only Android is supported.

Installation

tns plugin install nativescript-html2pdf

Usage

import { html2PdfFile } from 'nativescript-html2pdf';

let myHtml: string = '<p>Hello World</p>';

let pdfPath: string = 'fs.knownFolders.documents().getFile('myPdf.pdf').path;

html2PdfFile(myHtml, pdfPath);

//Your PDF file is now available at the specified path.
You can’t perform that action at this time.