Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Canvas doesn't seem to be working #20

Open
himanchau opened this issue Nov 4, 2024 · 5 comments
Open

Canvas doesn't seem to be working #20

himanchau opened this issue Nov 4, 2024 · 5 comments
Labels
bug Something isn't working

Comments

@himanchau
Copy link

Environment

NodeJS v22

Reproduction

const image = await renderPageAsImage(pdf, i, {
    width: 1700,
    canvas: () => import("canvas"),
  });

Describe the bug

Error processing PDF: TypeError: _canvas.createCanvas is not a function
    at Object._createCanvas (webpack-internal:///(rsc)/./node_modules/unpdf/dist/index.mjs:125:24)
    at Object.create (webpack-internal:///(rsc)/./node_modules/unpdf/dist/index.mjs:130:29)
    at renderPageAsImage$1 (webpack-internal:///(rsc)/./node_modules/unpdf/dist/index.mjs:102:29)

Additional context

No response

Logs

No response

@himanchau himanchau added the bug Something isn't working label Nov 4, 2024
@philosofonusus
Copy link

I have the same issue

@johannschopplich
Copy link
Collaborator

Huh, that's weird. I will have to investigate.

@BartaValentin
Copy link

BartaValentin commented Nov 18, 2024

Any update on this issue ? I have the same issue using Node.js 20 environment

@johannschopplich
Copy link
Collaborator

I don't have the resource to work on this at the moment. A quick solution didn't seem in reach when I debugged it. PR welcome!

@BartaValentin
Copy link

I am able to fix this issue, so my problem was I used in Azure Devops different kind of agent pool to build my module, because I updated the pdfjs-dist version 2.15.349 NPM package to use unpdf version 0.12.1, and in the meantime I updated the node version as well from 18.18.0 to 20.18.0, and during this update there were many breaking change between the different versions, but I could handle it well.

So I used ubuntu:22.04 agent and node.js 18.18.0 accidentally to build my node.js module, and I run my integration test on a different ci docker agent pool, which is used node.js 20.18.0, and I got the same error what is mentioned above. So I fixed this little mistake and now everything works fine.

Currently I used this NPM install command:

npm ci --arch=x64 --platform=win32 --target_arch=x64 --target_platform=win32 --target_libc=unknown

My NPM dependencies currently:

 "canvas": "2.11.2
 "unpdf": "0.12.1",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants