dtjohnson / xlsx-populate

Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, encryption, and a focus on keeping existing workbook features and styles in tact.
MIT License
956 stars 183 forks source link

How can i read image from xlsx #366

Open Bhautik0110 opened 8 months ago

Bhautik0110 commented 8 months ago

Issue

I want to read an image from xlsx file (https://docs.google.com/spreadsheets/d/1IxWwGoiFvTEKpU7QftK-yHEN6g_bMAXs/edit?usp=sharing&ouid=114862659237247838905&rtpof=true&sd=true), Instead of reading the image, it prints the undefined.

// ... import statement reading file statement

wb.sheet(0).usedRange().forEach((cell: any) => {
    console.log(cell);
});