
import console;
import inet.http
var img = inet.http.get("http://www.chengxu.online/UploadPic/202110041531443238.png");
import godking.libxl
var book = godking.libxl(".xlsx","Sheet1");
var p1 = book.addPictureData(img);
var p2 = book.addPicture("E:\图片素材\png\png128_2000张\png-0015.png");
var p3 = book.addPictureAsLink("E:\图片素材\png\png128_2000张\png-0016.png", false);
var sheet = book.sheet(/*表名称或索引*/);
sheet.setCellPicture(1, 1, p1, 0.5, 0, 0, 0);
sheet.setCellPicture2(5, 1, p2, 100, 100, 0, 0, 0);
sheet.setCellPicture2(10, 1, p3, 100, 100, 0, 0, 0);
book.save("C:\Users\Administrator\Desktop\a.xlsx");
book.release();
console.pause();