mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
c479ec9272
Relates to #739
19 lines
538 B
JavaScript
19 lines
538 B
JavaScript
var paper = require('paper'),
|
|
path = require('path'),
|
|
fs = require('fs');
|
|
|
|
var canvas = paper.createCanvas(612, 792, 'pdf');
|
|
paper.setup(canvas);
|
|
with (paper) {
|
|
fs.readFile('./in.json', { encoding: 'utf8' }, function (err, data) {
|
|
if (err)
|
|
throw err;
|
|
project.importJSON(data);
|
|
view.update();
|
|
fs.writeFile(path.resolve(__dirname, 'out.pdf'), canvas.toBuffer(), function (err) {
|
|
if (err)
|
|
throw err;
|
|
console.log('Saved!');
|
|
});
|
|
});
|
|
}
|