1.0.28 • Published 8 years ago
svg-sketch-pdf v1.0.28
svg-sketch-pdf
pdf creation for svg-sketch
using the awesome pdfkit library
converts json from svg-sketch to pdf.
use with browserify
example
run in node or browser!
var fs = require('fs');
var pdf = require('./')({size: [595.28, 841.89], base64: typeof window !== 'undefined'});
var concat = require('concat-stream');
pdf.pipe(concat(write));
pdf.write([
{
type: 'header',
layout: {
type: 'landscape'
}
},
{
type: 'text',
args: {
value: 'I love svg',
x: 100,
y: 100
}
},
{
type: 'path',
args: {
d: 'M 100,114 L 200,114'
}
}
]);
pdf.end();
function write(data) {
if ('undefined' === typeof window) {
fs.writeFileSync('output.pdf', data, {encoding: 'base64'});
} else {
window.location.href = 'data:application/pdf;base64,' + data;
}
}opt.size is width, height
opt.document optional function document(pdfkitDoc) { }
opt.yoffset optional function yoffset(event) {}
opt.compress optional compress pdf (default false)
install
With npm do:
npm install svg-sketch-pdflicense
MIT
1.0.28
8 years ago
1.0.27
9 years ago
1.0.26
9 years ago
1.0.25
9 years ago
1.0.24
9 years ago
1.0.22
9 years ago
1.0.21
9 years ago
1.0.20
9 years ago
1.0.19
10 years ago
1.0.18
10 years ago
1.0.17
10 years ago
1.0.16
10 years ago
1.0.15
10 years ago
1.0.14
10 years ago
1.0.13
10 years ago
1.0.12
10 years ago
1.0.11
10 years ago
1.0.10
10 years ago
1.0.8
11 years ago
1.0.7
11 years ago
1.0.6
11 years ago
1.0.5
11 years ago
1.0.4
11 years ago
1.0.3
11 years ago
1.0.2
11 years ago
1.0.1
11 years ago
1.0.0
11 years ago
0.0.5
11 years ago
0.0.4
11 years ago
0.0.3
11 years ago
0.0.2
11 years ago
0.0.1
11 years ago
0.0.0
11 years ago
