Description
Hey there.
As noted in #225, there is an upcoming major release of node-canvas
that appears to actually compile correctly with electron. I have been testing this with pdf-to-img
, and it more or less works... But there is an issue I encountered I wanted to bring up because I think it will need to be addressed in some capacity or another. I'm not sure if this is a pdfjs
or pdf-to-img
problem (actually I'm about certain it is a pdfjs
problem, but the canvas dependency resides in this repo).
First things first, my package.json
looks something like this:
{
...
"dependencies": {
"pdf-to-img": "^2.1.2"
},
"overrides": {
"pdf-to-img": {
"canvas": "https://github.com/Automattic/node-canvas.git#master"
}
}
}
This appears to work as expected and installs the 3.0
version of canvas.
My test file looks like this:
const { fork } = require('node:child_process');
const fs = require('node:fs');
const { pdf } = require('pdf-to-img');
const file = `<some-file>`;
async function getPages () {
const doc = await pdf(file);
for await (const page of doc) {
fs.writeFileSync("test.png", page);
}
}
getPages();
When running the file, I'm presented with this error:
...\pdfjs-test\node_modules\pdfjs-dist\legacy\build\pdf.js:8743
ctx.save = ctx.__originalSave;
^
TypeError: Cannot assign to read only property 'save' of object '#<CanvasRenderingContext2D>'
at CanvasRenderingContext2D.ctx._removeMirroring (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:8743:14)
at CanvasGraphics.endSMaskMode (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:9793:14)
at CanvasGraphics.checkSMaskState (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:9770:12)
at CanvasGraphics.restore (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:9841:12)
at CanvasGraphics._restoreInitialState2 (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:10945:10)
at CanvasGraphics.endDrawing (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:9572:79)
at InternalRenderTask.cancel (...\pdfjs-test\node_modules\←[4mpdfjs-dist←[24m\legacy\build\pdf.js:6253:82)
Looking under the hood of pdfjs
, the problem seems to arise from the mirrorContextOperations
function, which is overwriting many of the built-in canvas context methods such as save
, restore
, scale
, etc.
This doesn't seem to have been an issue for the previous version of canvas, but looking over some of the update it received to support NAPI, it seems like those methods are now defined as read-only properties.
Now I'm not sure if this is really an issue for this repo or for the pdfjs
one. The problem certainly comes from their usage of the canvas context, but considering they don't even have a canvas dependency, I thought maybe this was the place to start. Maybe a sort of proxy object or something that would allow the methods overridden in mirrorContextOperations
to be done so safely.
Just wanted to open a discussion!