A web application for extracting images from PDF files, built with React, TypeScript, and Vite.
- Upload PDF files and extract embedded images
- Fast, modern UI with Tailwind CSS
- Uses a web worker for PDF processing
bun install
bun run dev
bun run build
After building, a postbuild script automatically copies the required pdf.worker.min.mjs
file from pdfjs-dist
into the dist/
directory. This ensures the PDF extraction works in production builds without manual steps.
bun run preview
src/
— Main source code (React, TypeScript)public/
— Static assets (includingpdf.worker.min.mjs
)index.html
— Main HTML entry pointtailwind.config.ts
— Tailwind CSS configurationvite.config.ts
— Vite configuration
MIT