I am trying to convert a html div to pdf using jsPDF
. With in my div I have a svg
file with background image where user can draw rectangle, line, text etc. I am using d3.js
for drawing. Now I want to save my div with all drawing to pdf but it only converting my text to pdf. My js code is
function htmlToPdf() {
console.log("--------------- with in demoFromHTML");
var pdf = new jsPDF('p', 'pt', 'letter');
// source can be HTML-formatted string, or a reference
// to an actual DOM element from which the text will be scraped.
source = $('svg.plancontainer')[0];
// we support special element handlers. Register them with jQuery-style
// ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
// There is no support for any other type of selectors
// (class, of compound) at this time.
specialElementHandlers = {
// element with id of "bypass" - jQuery style selector
'#bypassme': function (element, renderer) {
// true = "handled elsewhere, bypass text extraction"
return true
}
};
margins = {
top: 80,
bottom: 60,
left: 40,
width: 522
};
// all coords and widths are in jsPDF instance's declared units
// 'inches' in this case
pdf.fromHTML(
source, // HTML string or DOM elem ref.
margins.left, // x coord
margins.top, { // y coord
'width': margins.width, // max width of content on PDF
'elementHandlers': specialElementHandlers
},
function (dispose) {
// dispose: object with X, Y of the last line add to the PDF
// this allow the insertion of new lines after html
// pdf.autoPrint();
pdf.output('dataurlnewwindow');
}, margins
);
}
and cdn is <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.debug.js"></script>
It print PRINT AREA
instead of my image
and text with out svg
drawing.
It is my sample div's preview that I want to convert to pdf
I did not get any specific informatin that specify where it is possible using
jsPDF
or not.
Now my questions are
Is it possible using
jsPDF
or any other js library ?If possible, would you please suggest me?
Any kind of help are appreciated. Thanks.
I am sharing my solution that may help someone. I could not manage print
svg
directly usingjspdf
instead what I have done is first convertsvg
to image using https://github.com/exupero/saveSvgAsPng then use that image to create pdf. Below is my codeGet
base64 image uri
usingsvgAsPngUri
method of saveSvgAsPng and pass that image through callback functionwhere I am getting
image uri
asuri
. With in mypdf
function I am using thisuri
to make pdf