Giter Site home page Giter Site logo

Comments (6)

yGuy avatar yGuy commented on May 27, 2024

Duplicate of #50

from svg2pdf.js.

guidev224 avatar guidev224 commented on May 27, 2024

@yGuy thanks for your quick answer,
Even though I have added your jsPDF version I am still getting the same error.
I have replaced the content of my local file by the content of your file content, but same error

from svg2pdf.js.

yGuy avatar yGuy commented on May 27, 2024

Please provide minimal self-contained complete repro if you are sure that this is a bug. I don't currently think so.

from svg2pdf.js.

guidev224 avatar guidev224 commented on May 27, 2024

@yGuy I din't really get what you mean by self-contained repo, but here what I have done:
1-I created a folder in to my desktop,
2-Created a svg2pdf.js file and copied the raw content of the svg2pdf.js file from your repository
3- Created jsPDF.js and copied the raw content of this file which is in the root directory of your jsPDF fork
4-Created an HTML file and included both of the aforementioned files
5- Created a script tag with the following content

const svgElement = document.getElementById('svg');
const width = 300, height = 200;

// create a new jsPDF instance
const pdf = new jsPDF('l', 'pt', [width, height]);

// render the svg element
svg2pdf(svgElement, pdf, {
	xOffset: 0,
	yOffset: 0,
	scale: 1
});

// get the data URI
const uri = pdf.output('datauristring');

// or simply safe the created pdf
pdf.save('myPDF.pdf');

which is the code you gave from your svf2pdf.js repository usage section.

I hope this will help understand the issue

from svg2pdf.js.

yGuy avatar yGuy commented on May 27, 2024

If you use the jsPDF file from the "dist" folder (which is the one that contains all of the code) your sample works for me: https://github.com/yWorks/jsPDF/blob/master/dist/jspdf.min.js

And repro means "reproduction case": instructions that let others reproduce your findings.

from svg2pdf.js.

guidev224 avatar guidev224 commented on May 27, 2024

Thanks @yGuy it works now

from svg2pdf.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.