• アップロード無し
  • ローカル処理
  • オフライン対応
  • 自動クリーンアップ
外部リクエスト 0 件

convert / PDF を画像に

PDF を画像に

各ページを PNG/JPG として書き出します。

PDF をファイルトレイに追加してください。

方法論と技術的透明性

使用ライブラリ

  • pdf-lib — PDF構築・編集のコアロジック
  • pdf.js — PDFレンダリングとページラスタライズ

メモリ管理戦略

各操作完了後、URL.revokeObjectURL()を即座に呼び出します。pdf.jsのドキュメントハンドルはpdfDoc.destroy()で破棄され、Workerはコンポーネントのアンマウント時または処理完了時に終了されます。

ファイルを保存しないため、恒久的な保存は保証されません。パスワード保護されたPDFのローカル処理はサポートされていません。

Key Features

  • High-fidelity rendering

    Each page is rendered at up to 300 DPI using pdf.js, producing sharp images suitable for print and web.

  • PNG and JPG output

    Download individual pages as PNG (lossless) or get all pages at once in a ZIP archive.

  • In-browser processing

    A dedicated Web Worker handles rendering so the UI stays responsive even for large, complex PDFs.

Common Use Cases

Useful for creating slide thumbnails for presentations, generating web-ready page previews, or extracting diagrams and charts from a PDF for use in other documents.

Frequently Asked Questions

What resolution are the output images?
Pages are rendered targeting 300 DPI based on the PDF's internal dimensions. Complex pages may take longer to render.
Can I download all pages at once?
Yes. A bulk download button appears after conversion to get all pages in a single ZIP archive.
Does this work on scanned PDFs?
Yes. Scanned PDFs are already image-based and render directly without extra processing.