№ 03 · Projects · maintained
Pixelify
Web app that transforms images into pixel art with dithering algorithms, adjustable color depth, and a REST API.
- Created
- Stack
- Next.jsTypeScriptCanvas APIJotai
- Site
- pixelify.fasu.dev
- Source
- pyyupsk/pixelify
A web application that converts images into pixel art. Supports Floyd-Steinberg and Bayer dithering, adjustable color depth (4–256 colors), pixel size control, and brightness/contrast/saturation tuning.
Processing runs both client-side (real-time preview via Canvas API) and server-side via a REST API.
API
curl -X POST https://pixelify.fasu.dev/api/pixelart \
-H "Content-Type: application/json" \
-d '{
"image": "data:image/png;base64,...",
"pixelSize": 8,
"colorDepth": 32,
"dithering": "floyd-steinberg"
}'