pdfmake-unicode
v0.0.1
Published
Support Unicode Characters in PDFmake library.
Downloads
6,665
Readme
PDFMake Unicode
Support Unicode Characters in PDFmake library.
Getting Started
pdfmake is library for PDF printing in pure JavaScript.
By default pdfmake uses Roboto font, which does not support Unicode characters.
This package is an extension for adding unicode character support. It comes with a Arial GEO font, which has 4 styles: Regular, Bold, Italic and Bold Italic.
Installation
Install with NPM:
$ npm install pdfmake-unicode --save
Install with Yarn:
$ yarn add pdfmake-unicode
Install with Bower:
$ bower install pdfmake-unicode --save
Usage
Note: You don't need to include
vfs_fonts.js
file from pdfmake library.
<script src="pdfmake.min.js"></script>
<script src="build/pdfmake-unicode.js"></script>
<script>
var docDefinition = { content: 'Your unicode text will go here.' };
pdfMake.createPdf(docDefinition).download('filename.pdf');
</script>
Licence
The PDFMake Unicode is open-sourced software licensed under the MIT license.