
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
[React]コンポーネントをpdf出力させる - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
[React]コンポーネントをpdf出力させる - Qiita
import html2canvas from 'html2canvas' import { jsPDF } from 'jspdf' import { useRef } from 'react... import html2canvas from 'html2canvas' import { jsPDF } from 'jspdf' import { useRef } from 'react' const usePdf = () => { const targetRef = useRef<HTMLDivElement>(null) const pdfOpenHandler = () => { if (targetRef.current === null) return html2canvas(targetRef.current).then((canvas) => { const pdf = new jsPDF({ format: 'a4' }) pdf.addImage(canvas, 'canvas', 15, 10, canvas.width / 18, canvas.height