{"id":23912086,"url":"https://github.com/liorocks/pdfmake-unicode","last_synced_at":"2025-12-12T03:55:15.359Z","repository":{"id":57321533,"uuid":"90741464","full_name":"liorocks/pdfmake-unicode","owner":"liorocks","description":"🖨 Support Unicode Characters in PDFMake library.","archived":false,"fork":false,"pushed_at":"2017-05-12T11:13:29.000Z","size":3152,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-14T21:01:31.898Z","etag":null,"topics":["pdf","pdfmake","unicode"],"latest_commit_sha":null,"homepage":"https://landish.github.io/pdfmake-unicode/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liorocks.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-09T12:08:49.000Z","updated_at":"2024-01-23T12:19:00.000Z","dependencies_parsed_at":"2022-08-25T22:41:38.327Z","dependency_job_id":null,"html_url":"https://github.com/liorocks/pdfmake-unicode","commit_stats":null,"previous_names":["liorocks/pdfmake-unicode","landish/pdfmake-unicode"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liorocks%2Fpdfmake-unicode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liorocks%2Fpdfmake-unicode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liorocks%2Fpdfmake-unicode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liorocks%2Fpdfmake-unicode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liorocks","download_url":"https://codeload.github.com/liorocks/pdfmake-unicode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248415095,"owners_count":21099601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pdf","pdfmake","unicode"],"created_at":"2025-01-05T08:58:14.787Z","updated_at":"2025-12-12T03:55:15.266Z","avatar_url":"https://github.com/liorocks.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PDFMake Unicode\n\n[![npm](https://img.shields.io/npm/v/pdfmake-unicode.svg)](https://www.npmjs.com/package/pdfmake-unicode)\n[![npm](https://img.shields.io/npm/dt/pdfmake-unicode.svg)](https://www.npmjs.com/package/pdfmake-unicode)\n[![license](https://img.shields.io/github/license/landish/pdfmake-unicode.svg)](https://github.com/Landish/pdfmake-unicode/blob/master/LICENSE)\n[![Demo](https://img.shields.io/badge/View-Demo-green.svg)](https://landish.github.io/pdfmake-unicode/)\n\nSupport Unicode Characters in [PDFmake](https://github.com/bpampuch/pdfmake) library.\n\n\n## Getting Started\n\n\u003e [pdfmake](https://github.com/bpampuch/pdfmake) is library for PDF printing in pure JavaScript.\n\nBy default pdfmake uses [Roboto](https://fonts.google.com/specimen/Roboto) font, which does not support Unicode characters.\n\nThis package is an extension for adding unicode character support. It comes with a [Arial GEO](http://fonts.ge/en/pack/28/Arial-GEO) font, which has 4 styles: Regular, **Bold**, *Italic* and ***Bold Italic***.\n\n## Installation\n\n\nInstall with [NPM](https://www.npmjs.com):\n\n```\n$ npm install pdfmake-unicode --save\n```\n\nInstall with [Yarn](https://yarnpkg.com/):\n\n```\n$ yarn add pdfmake-unicode\n```\n\nInstall with [Bower](https://bower.io/):\n\n```\n$ bower install pdfmake-unicode --save\n```\n\n## Usage\n\n\u003e Note: You **don't** need to include `vfs_fonts.js` file from pdfmake library.\n\n```html\n\u003cscript src=\"pdfmake.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"dist/pdfmake-unicode.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n  var docDefinition = { content: 'Your unicode text will go here.' };\n  pdfMake.createPdf(docDefinition).download('filename.pdf');\n\u003c/script\u003e\n\n```\n### Use with ES6\n\n```js\nimport pdfMake from 'pdfmake/build/pdfmake';\nimport pdfMakeUnicode from 'pdfmake-unicode';\n\n// this part is crucial\npdfMake.vfs = pdfMakeUnicode.pdfMake.vfs;\n\nlet docDefinition = { content: 'Your unicode text will go here.' };\npdfMake.createPdf(docDefinition).download('filename.pdf');\n\n```\n\n## Supported Languages\n* Georgian\n* Russian\n* Basic Latin\n\n## Licence\n\nThe PDFMake Unicode is open-sourced software licensed under the [MIT license](https://github.com/Landish/pdfmake-unicode/blob/master/LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliorocks%2Fpdfmake-unicode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliorocks%2Fpdfmake-unicode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliorocks%2Fpdfmake-unicode/lists"}