A web app that adds analog film effects to your digital photos.
docker pull ghcr.io/flapenta/filmglowstudio:latest
docker run -p 8080:80 ghcr.io/flapenta/filmglowstudio:latestOpen http://localhost:8080 in your browser.
- Film emulation: Kodak Vision3 and Fujifilm looks
- Halation: Red glow around bright areas (like real film)
- Bloom: Soft white glow effect
- Film grain: Adjustable texture and intensity
- Color tools: Temperature, contrast, shadows, highlights, saturation, vibrance
- Extra effects: Vignette, sharpness, softness
- React + TypeScript
- Vite
- Photon (WebAssembly for fast image processing)
- shadcn-ui + Tailwind CSS
# Install dependencies
npm install
# Start dev server
npm run dev
# Build for production
npm run builddocker compose up -d# Build image
docker build -t filmglowstudio .
# Run container
docker run -p 8080:80 filmglowstudio
