I'm using PDFKit for an application. I'm just using it in the Browser in an HTML file, with Javascript (no Node.js).
I downloaded PDFKit from GitHub: https://github.com/devongovett/pdfkit/releases
as well as Blob Stream: https://github.com/devongovett/blob-stream
I'm trying to include a custom font per the documentation like so:
doc.registerFont('Custom Font', 'fonts/GOODDP__.TTF');
doc.font('Custom Font').fontSize(fontSize).text($("#text1").val(), xPos, yPos, configObj);
But I always get this error:
fs.readFileSync is not a function
This makes sense because fs.readFileSync
is part of node.js, and I'm not using that. However, the example in the docs say this can be used in the browser.
I know there's also a Browserify option, but I'm not sure how or if that would help in this situation
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…