excel-add-pic.js 315 Bytes
Newer Older
Leon's avatar
Leon committed
1 2 3 4 5 6 7 8 9 10 11 12 13
require("topsin.excelxs");
try {
    var book = new Book;
    var ok = book.create("test.xlsx");
    if (!ok) throw "open xlsx failed.";
    var sheet = book.addSheet("test");
    var pic = book.addPicture("E:/1.png");
    sheet.setPicture(0, 0, pic);
    book.save();
    book.close();
} catch(e) {
    print(e);
}