Rename penguin

This commit is contained in:
Dolan
2018-01-22 21:34:09 +00:00
parent ef05024f2f
commit e6d3577f74
4 changed files with 3 additions and 9 deletions

View File

@ -5,7 +5,7 @@ var doc = new docx.File();
var paragraph = new docx.Paragraph("Hello World");
doc.addParagraph(paragraph);
const image = doc.createImage("./demo/image1.jpeg");
const image = doc.createImage("./demo/images/image1.jpeg");
var exporter = new docx.LocalPacker(doc);
exporter.pack('My Document');