mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
2025bd1a77
Closes #969
22 lines
759 B
JavaScript
22 lines
759 B
JavaScript
// Please note: When loading paper as a normal module installed in node_modules,
|
|
// you would use this instead:
|
|
// var paper = require('paper');
|
|
var paper = require('../../dist/paper-full.js');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
paper.setup(new paper.Size(300, 600));
|
|
paper.project.importSVG(/*'in.svg'*/'file://' + path.resolve(__dirname, 'in.svg'), {
|
|
onLoad: function(item) {
|
|
paper.view.exportFrames({
|
|
amount: 1,
|
|
directory: __dirname,
|
|
onComplete: function() {
|
|
console.log('Done exporting.');
|
|
},
|
|
onProgress: function(event) {
|
|
console.log(event.percentage + '% complete, frame took: ' + event.delta);
|
|
}
|
|
});
|
|
}
|
|
});
|