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

Fix for black box issue in production build #2635

Open
tahmidrahman-dsi opened this issue Oct 4, 2023 · 0 comments
Open

Fix for black box issue in production build #2635

tahmidrahman-dsi opened this issue Oct 4, 2023 · 0 comments

Comments

@tahmidrahman-dsi
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch pdfmake@0.2.7 for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/pdfmake/build/pdfmake.js b/node_modules/pdfmake/build/pdfmake.js
index 7547d87..0d90240 100644
--- a/node_modules/pdfmake/build/pdfmake.js
+++ b/node_modules/pdfmake/build/pdfmake.js
@@ -20345,7 +20345,7 @@ var SVGtoPDF = function SVGtoPDF(doc, svg, x, y, options) {
     doc.addContent('ET');
   }
   function docFillColor(color) {
-    if (color[0].constructor.name === 'PDFPattern') {
+    if (color[0].constructor.name === 'PDFPattern' || color[0].dx) {
       doc.fillOpacity(color[1]);
       docUsePattern(color[0], false);
     } else {
@@ -20353,7 +20353,7 @@ var SVGtoPDF = function SVGtoPDF(doc, svg, x, y, options) {
     }
   }
   function docStrokeColor(color) {
-    if (color[0].constructor.name === 'PDFPattern') {
+    if (color[0].constructor.name === 'PDFPattern' || color[0].dx) {
       doc.strokeOpacity(color[1]);
       docUsePattern(color[0], true);
     } else {

This issue body was partially generated by patch-package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants