1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 06:38:07 +02:00

Merge pull request #14171 from Snuffleupagus/issue-14170

Prevent run-time errors in Node.js versions with `URL.createObjectURL` support (issue 14170)
This commit is contained in:
Tim van der Meij 2021-10-22 21:07:19 +02:00 committed by GitHub
commit 11f030d301
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -110,7 +110,11 @@ const loadingTask = pdfjsLib.getDocument({
console.log();
const opList = await page.getOperatorList();
const svgGfx = new pdfjsLib.SVGGraphics(page.commonObjs, page.objs);
const svgGfx = new pdfjsLib.SVGGraphics(
page.commonObjs,
page.objs,
/* forceDataSchema = */ true
);
svgGfx.embedFonts = true;
const svg = await svgGfx.getSVG(opList, viewport);
await writeSvgToFile(svg, getFilePathForPage(pageNum));