jspdf-cry
v1.0.2
Published
PDF generation library
Downloads
3
Readme
About this fork
- this is a continuation of the library pdfjs (https://github.com/rkusa/pdfjs)
new pdf.Document([opts])
Creates a new PDF document.
Arguments:
- opts - document styling options
Options:
- width (default: 595.296) - the page width
- height (default: 841.896) - the page height
- padding (default: 20) - the page padding
- font (required) - expects an
pdf.Font
object being either a AFM font or a OTF font - fontSize (default: 11) - the font size
- color (default: black) - the font color as hex number (e.g. 0x000000)
- lineHeight (default: 1.15) - the line height
- properties - document properties - see below
Properties:
- title (string) - the document's title
- author (string) - the name of the person who created the document
- subject (string) - the subject of the document
- keywords (string) - keywords associated with the document
- creator (string) - if the document was converted to PDF from another format, the name of the conforming product that created the original document from which it was converted
- producer (string, default: pdfjs v1.3 (github.com/rkusa/pdfjs)) - if the document was converted to PDF from another format, the name of the conforming product that converted it to PDF
- creationDate (date, default:
new Date()
) - the date and time the document was created
Example:
const doc = new pdf.Document({
font: new pdf.Font(require('pdfjs/font/helvetica.json')),
padding: 10
})
doc.pipe(fs.createWriteStream('output.pdf'))
// render something onto the document
await doc.end()
For an explanation of the units and different paper sizes have a look at the units section.
new pdf.Font(arg)
Creates a new AFM font pr OTF font object that can be used with PDF documents. TFont objects can be used multiple times.
Arguments:
- arg - the font data, as either Buffer or ArrayBuffer of an OTF font or a JSON object descriping an AFM font
Available AFM fonts:
pdfjs/font/Courier.json
pdfjs/font/Courier-Bold.json
pdfjs/font/Courier-BoldOblique.json
pdfjs/font/Courier-Oblique.json
pdfjs/font/Helvetica.json
pdfjs/font/Helvetica-Bold.json
pdfjs/font/Helvetica-BoldOblique.json
pdfjs/font/Helvetica-Oblique.json
pdfjs/font/Symbol.json
pdfjs/font/Times.json
pdfjs/font/Times-Bold.json
pdfjs/font/Times-BoldItalic.json
pdfjs/font/Times-Italic.json
pdfjs/font/Times-Roman.json
pdfjs/font/ZapfDingbats.json
Examples:
new pdf.Font(require('pdfjs/font/Helvetica.json'))
new pdf.Font(fs.readFileSync('./opensans/regular.ttf'))
new pdf.Image(src)
Creates a new image that can be added to one or multiple documents.
Arguments:
- src - a buffer of the image source (supported formats: jpeg, pdf)
Example:
const src = fs.readFileSync('image.jpg')
const img = new pdf.Image(src)
doc.image(img)
new pdfExternalDocument(src)
Creates a new external PDF document that can be merged into the document or that can be added to the document as a page template.
Arguments:
- src - a buffer of the PDF source
Example:
const src = fs.readFileSync('other.pdf')
const ext = new pdf.ExternalDocument(src)
doc.setTemplate(ext)
doc.addPagesOf(ext)
doc.addPageOf(1, ext)
Units
PDFs are measured in points (1/72"
), i.e., each point is 1/72
of an inch. That is, the paper size of an US letter is in points 8.5 * 72 = 612
wide and 11 * 72 = 792
high.
The following helper are exported:
pdf.mm
pdf.cm
Example:
{ padding: 15 * pdf.mm }
Paper Sizes:
- A4 (default) - 210mm × 297mm (8.27in × 11.7in) = 595.296 x 841.896
- American Letter - 215.9mm × 279.4mm (8.5in × 11in) = 612 x 792