SA7
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v3View latest version
A simple web application that allows users to upload images and convert them to PDF format.
- Upload multiple image files (JPEG, PNG, GIF, WebP)
- Convert images to a single PDF document
- Download the generated PDF
- Responsive design with drag-and-drop interface
├── backend/
│ └── index.ts # Main Hono server with PDF generation
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React frontend application
│ └── style.css # Custom styles
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
- Visit the application URL
- Drag and drop images or click to select files
- Click "Convert to PDF" to generate the PDF
- Download the generated PDF file
- Backend: Hono framework with PDF generation using jsPDF
- Frontend: React with TypeScript and TailwindCSS
- File Upload: Base64 encoding for image processing
- PDF Generation: Client-side PDF creation for better performance