Import Ruty

This commit is contained in:
2024-03-11 00:54:46 +01:00
parent 2c0c53a22b
commit fbf47eaa3a
485 changed files with 67750 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
var rtf = require('../lib/rtf'),
fs = require('fs'),
ImageElement = require('../lib/elements/image');
var myDoc = new rtf();
myDoc.elements.push(new ImageElement('examples/dog.jpg'));
myDoc.createDocument(
function(err, output){
//console.log(output); //that's a little much to output to the console
fs.writeFile('image.rtf', output, function (err) {
if (err) return console.log(err);
});
}
);