1. ホーム
  2. javascript

[解決済み] jsPDFライブラリの正しい使い方

2022-03-01 22:46:14

質問

私はいくつかのdivをPDFに変換したいのですが、jsPDFライブラリを試しましたが、成功しませんでした。私はライブラリを動作させるために何をインポートする必要があるのか理解できないようです。私は例を見てきましたが、私はまだそれを理解することはできません。私は以下を試しました。

<script type="text/javascript" src="js/jspdf.min.js"></script>

jQueryの後と。

$("#html2pdf").on('click', function(){
    var doc = new jsPDF();
    doc.fromHTML($('body').get(0), 15, 15, {
        'width': 170
    });
    console.log(doc);
});

をテスト用ですが、受信します。

"Cannot read property '#smdadminbar' of undefined"

ここで #smdadminbar はボディから最初のdivです。

解決方法は?

htmlからpdfを利用するには、以下のようにします。

ステップ1:ヘッダーに以下のスクリプトを追加します。

<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>

またはローカルにダウンロード

ステップ2:jsPDFコードを実行するHTMLスクリプトを追加する

識別子を渡すようにカスタマイズするか、#contentを必要な識別子に変更するだけです。

 <script>
    function 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 = $('#content')[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.save('Test.pdf');
            }, margins
        );
    }
</script>

ステップ3:本文を追加する

<a href="javascript:demoFromHTML()" class="button">Run Code</a>
<div id="content">
    <h1>  
        We support special element handlers. Register them with jQuery-style.
    </h1>
</div>

オリジナルのチュートリアルを参照する

動くフィドルを見る