jsPDF
を使用してhtml divをpdfに変換しようとしています。私のdivには、svg
の背景画像を持つファイルがあります。このファイルでは、長方形、線、テキストなどを描画できます。描画にはd3.js
を使用しています。今私はPDFにすべての図面で私のdivを保存するが、それは私のテキストをpdfに変換するだけです。私のJSコードはSVGを持つjsPDF経由でHTML DivをPDFに変換
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
);
}
であり、それが出てsvg
図面に代わり、私のimage
とテキストのPRINT AREA
を印刷<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.debug.js"></script>
CDNです。
は、それは私が、私はそれがjsPDF
かを使用して可能である場所を指定し、特定のinformatinを取得していないPDF に変換したい私のサンプルのdivのプレビューです。
は今、私の質問は
ある
jsPDF
や他のJSライブラリを使用して、それは可能ですか?可能であれば、私にお勧めしますか?
何か助けていただければ幸いです。ありがとう。
解決方法はありましたか? –