123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- import { buildGetDocumentParams } from "./test_utils.js";
- import { getDocument } from "../../src/display/api.js";
- import { isNodeJS } from "../../src/shared/is_node.js";
- import { SVGGraphics } from "../../src/display/svg.js";
- const XLINK_NS = "http://www.w3.org/1999/xlink";
- function withZlib(isZlibRequired, callback) {
- if (isZlibRequired) {
-
-
- if (!isNodeJS) {
- throw new Error("zlib test can only be run in Node.js");
- }
- return callback();
- }
- if (!isNodeJS) {
-
- return callback();
- }
- const zlib = __non_webpack_require__("zlib");
- const deflateSync = zlib.deflateSync;
- zlib.deflateSync = disabledDeflateSync;
- function disabledDeflateSync() {
- throw new Error("zlib.deflateSync is explicitly disabled for testing.");
- }
- function restoreDeflateSync() {
- if (zlib.deflateSync === disabledDeflateSync) {
- zlib.deflateSync = deflateSync;
- }
- }
- const promise = callback();
- promise.then(restoreDeflateSync, restoreDeflateSync);
- return promise;
- }
- describe("SVGGraphics", function () {
- let loadingTask;
- let page;
- beforeAll(async function () {
- loadingTask = getDocument(buildGetDocumentParams("xobject-image.pdf"));
- const doc = await loadingTask.promise;
- page = await doc.getPage(1);
- });
- afterAll(async function () {
- await loadingTask.destroy();
- });
- describe("paintImageXObject", function () {
- function getSVGImage() {
- let svgGfx;
- return page
- .getOperatorList()
- .then(function (opList) {
- const forceDataSchema = true;
- svgGfx = new SVGGraphics(page.commonObjs, page.objs, forceDataSchema);
- return svgGfx.loadDependencies(opList);
- })
- .then(function () {
- let svgImg;
-
- const elementContainer = {
- append(...elements) {
- svgImg = elements.at(-1);
- },
- };
-
- const xobjectObjId = "img_p0_1";
- if (isNodeJS) {
- const { setStubs } = __non_webpack_require__(
- "../../examples/node/domstubs.js"
- );
- setStubs(global);
- }
- try {
- const imgData = svgGfx.objs.get(xobjectObjId);
- svgGfx.paintInlineImageXObject(imgData, elementContainer);
- } finally {
- if (isNodeJS) {
- const { unsetStubs } = __non_webpack_require__(
- "../../examples/node/domstubs.js"
- );
- unsetStubs(global);
- }
- }
- return svgImg;
- });
- }
- it('should fail require("zlib") unless in Node.js', function () {
- function testFunc() {
- __non_webpack_require__("zlib");
- }
- if (isNodeJS) {
-
-
- expect(testFunc.toString()).toMatch(/\srequire\(["']zlib["']\)/);
- expect(testFunc).not.toThrow();
- } else {
-
- expect(testFunc).toThrow();
- }
- });
- it("should produce a reasonably small svg:image", async function () {
- if (!isNodeJS) {
- pending("zlib.deflateSync is not supported in non-Node environments.");
- }
- const svgImg = await withZlib(true, getSVGImage);
- expect(svgImg.nodeName).toBe("svg:image");
- expect(svgImg.getAttributeNS(null, "width")).toBe("200px");
- expect(svgImg.getAttributeNS(null, "height")).toBe("100px");
- const imgUrl = svgImg.getAttributeNS(XLINK_NS, "href");
-
- expect(imgUrl).toMatch(/^data:image\/png;base64,/);
-
-
-
-
- expect(imgUrl.length).toBeLessThan(367);
- });
- it("should be able to produce a svg:image without zlib", async function () {
- const svgImg = await withZlib(false, getSVGImage);
- expect(svgImg.nodeName).toBe("svg:image");
- expect(svgImg.getAttributeNS(null, "width")).toBe("200px");
- expect(svgImg.getAttributeNS(null, "height")).toBe("100px");
- const imgUrl = svgImg.getAttributeNS(XLINK_NS, "href");
- expect(imgUrl).toMatch(/^data:image\/png;base64,/);
-
- expect(imgUrl.length).toBe(80246);
- });
- });
- });
|