Skip to main content
01

Pixelify

Web app that transforms images into pixel art with dithering algorithms, adjustable color depth, and a REST API.

Next.jsTypeScriptCanvas APIJotai
Pixelify

About

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

bash
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"
  }'