Stirling-PDF/shared-operations/functions/getImagesOnPage.js

14 lines
437 B
JavaScript
Raw Normal View History

import PDFJS from 'pdfjs-dist';
export async function getImagesOnPage(page) {
2023-10-27 02:56:13 +02:00
const ops = await page.getOperatorList();
const images = [];
for (var j=0; j < ops.fnArray.length; j++) {
if (ops.fnArray[j] == PDFJS.OPS.paintJpegXObject || ops.fnArray[j] == PDFJS.OPS.paintImageXObject) {
const image = page.objs.get(ops.argsArray[j][0]);
images.push(image);
}
}
return images;
}