UNPKG

5.98 kBMarkdownView Raw
1# PDFKit
2
3[![Build Status](https://travis-ci.org/theBenForce/pdfkit2.svg?branch=master)](https://travis-ci.org/theBenForce/pdfkit2)
4
5A JavaScript PDF generation library for Node and the browser.
6
7## Description
8
9PDFKit is a PDF document generation library for Node and the browser that makes creating complex, multi-page, printable documents easy.
10It's written in CoffeeScript, but you can choose to use the API in plain 'ol JavaScript if you like. The API embraces
11chainability, and includes both low level functions as well as abstractions for higher level functionality. The PDFKit API
12is designed to be simple, so generating complex documents is often as simple as a few function calls.
13
14Check out some of the [documentation and examples](http://pdfkit.org/docs/getting_started.html) to see for yourself!
15You can also read the guide as a [self-generated PDF](http://pdfkit.org/docs/guide.pdf) with example output displayed inline.
16If you'd like to see how it was generated, check out the README in the [docs](https://github.com/devongovett/pdfkit/tree/master/docs)
17folder.
18
19You can also try out an interactive in-browser demo of PDFKit [here](http://pdfkit.org/demo/browser.html).
20
21## Installation
22
23Installation uses the [npm](http://npmjs.org/) package manager. Just type the following command after installing npm.
24
25 npm install pdfkit2
26
27## Features
28
29- Vector graphics
30 - HTML5 canvas-like API
31 - Path operations
32 - SVG path parser for easy path creation
33 - Transformations
34 - Linear and radial gradients
35- Text
36 - Line wrapping
37 - Text alignments
38 - Bulleted lists
39- Font embedding
40 - Supports TrueType (.ttf), OpenType (.otf), WOFF, WOFF2, TrueType Collections (.ttc), and Datafork TrueType (.dfont) fonts
41 - Font subsetting
42 - See [fontkit](http://github.com/devongovett/fontkit) for more details on advanced glyph layout support.
43- Image embedding
44 - Supports JPEG and PNG files (including indexed PNGs, and PNGs with transparency)
45- Annotations
46 - Links
47 - Notes
48 - Highlights
49 - Underlines
50 - etc.
51- Outlines
52
53## Coming soon!
54
55- Patterns fills
56- PDF Security
57- Higher level APIs for creating tables and laying out content
58- More performance optimizations
59- Even more awesomeness, perhaps written by you! Please fork this repository and send me pull requests.
60
61## Example
62
63```coffeescript
64PDFDocument = require 'pdfkit'
65
66# Create a document
67doc = new PDFDocument
68
69# Pipe its output somewhere, like to a file or HTTP response
70# See below for browser usage
71doc.pipe fs.createWriteStream('output.pdf')
72
73# Embed a font, set the font size, and render some text
74doc.font('fonts/PalatinoBold.ttf')
75 .fontSize(25)
76 .text('Some text with an embedded font!', 100, 100)
77
78# Add an image, constrain it to a given size, and center it vertically and horizontally
79doc.image('path/to/image.png', {
80 fit: [250, 300],
81 align: 'center',
82 valign: 'center'
83});
84
85# Add another page
86doc.addPage()
87 .fontSize(25)
88 .text('Here is some vector graphics...', 100, 100)
89
90# Draw a triangle
91doc.save()
92 .moveTo(100, 150)
93 .lineTo(100, 250)
94 .lineTo(200, 250)
95 .fill("#FF3300")
96
97# Apply some transforms and render an SVG path with the 'even-odd' fill rule
98doc.scale(0.6)
99 .translate(470, -380)
100 .path('M 250,75 L 323,301 131,161 369,161 177,301 z')
101 .fill('red', 'even-odd')
102 .restore()
103
104# Add some text with annotations
105doc.addPage()
106 .fillColor("blue")
107 .text('Here is a link!', 100, 100)
108 .underline(100, 100, 160, 27, color: "#0000FF")
109 .link(100, 100, 160, 27, 'http://google.com/')
110
111# Finalize PDF file
112doc.end()
113```
114
115[The PDF output from this example](http://pdfkit.org/demo/out.pdf) (with a few additions) shows the power of PDFKit — producing
116complex documents with a very small amount of code. For more, see the `demo` folder and the
117[PDFKit programming guide](http://pdfkit.org/docs/getting_started.html).
118
119## Browser Usage
120
121There are two ways to use PDFKit in the browser. The first is to use [Browserify](http://browserify.org/),
122which is a Node module packager for the browser with the familiar `require` syntax. The second is to use
123a prebuilt version of PDFKit, which you can [download from Github](https://github.com/devongovett/pdfkit/releases).
124
125In addition to PDFKit, you'll need somewhere to stream the output to. HTML5 has a
126[Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) object which can be used to store binary data, and
127get URLs to this data in order to display PDF output inside an iframe, or upload to a server, etc. In order to
128get a Blob from the output of PDFKit, you can use the [blob-stream](https://github.com/devongovett/blob-stream)
129module.
130
131The following example uses Browserify to load `PDFKit` and `blob-stream`, but if you're not using Browserify,
132you can load them in whatever way you'd like (e.g. script tags).
133
134```coffeescript
135# require dependencies
136PDFDocument = require 'pdfkit'
137blobStream = require 'blob-stream'
138
139# create a document the same way as above
140doc = new PDFDocument
141
142# pipe the document to a blob
143stream = doc.pipe(blobStream())
144
145# add your content to the document here, as usual
146
147# get a blob when you're done
148doc.end()
149stream.on 'finish', ->
150 # get a blob you can do whatever you like with
151 blob = stream.toBlob('application/pdf')
152
153 # or get a blob URL for display in the browser
154 url = stream.toBlobURL('application/pdf')
155 iframe.src = url
156```
157
158You can see an interactive in-browser demo of PDFKit [here](http://pdfkit.org/demo/browser.html).
159
160Note that in order to Browserify a project using PDFKit, you need to install the `brfs` module with npm,
161which is used to load built-in font data into the package. It is listed as a `devDependency` in
162PDFKit's `package.json`, so it isn't installed by default for Node users.
163If you forget to install it, Browserify will print an error message.
164
165## Documentation
166
167For complete API documentation and more examples, see the [PDFKit website](http://pdfkit.org/).
168
169## License
170
171PDFKit is available under the MIT license.