Browse by type
A browser-based pixel art converter: turn photos and images into pixel art with adjustable block size, color count, conversion algorithms, and built-in / custom palettes.
Live site: https://image2pixel.app
| Original | Result |
|---|---|
| Algorithm | Summary |
|---|---|
| Classic (Median Cut) | Block average → Median Cut palette in RGB → nearest color. Fast baseline. |
| Classic LAB (default) | Same solid blocks, but palette + matching in CIELAB for more perceptual results. |
| LAB + Dithering | Classic LAB pipeline + Floyd–Steinberg error diffusion (CIELAB distance). |
| Tezumie Style | Center-pixel sampling (hard edges) + LAB Floyd–Steinberg dithering. |
| Tezumie (No Dither) | Center-pixel sampling without dithering — clean hard-color blocks. |
On-page copy under Conversion Algorithms explains each option; labels are fully localized.
| Platform | Link |
|---|---|
| Steam (desktop) | Image2pixel — Pixel Art Generator |
| App Store (iOS) | image2pixel |
| Google Play (Android) | image2pixel |
| Chrome Extension | Image2Pixel Picker |
Extension privacy policy: web/chrome-extension-privacy-policy.html.
├── server.js # Optional static server (serves web/ on :5000)
├── pixelizer.js # Legacy / reference pixelizer helpers
├── scripts/ # Palette conversion helpers
└── web/
├── index.html # Main converter
├── pixel-text-generator.html
├── css/style.css
├── js/
│ ├── main.js # UI + conversion orchestration
│ ├── algorithms.js # CIELAB / dither / Tezumie pipelines
│ ├── i18n.js # EN / zh-CN / zh-TW strings
│ └── pixel-text-generator.js
├── palette/ # Built-in + fuse bead palettes
├── zh-CN/ · zh-TW/ # Localized legal pages
└── *.html # Privacy, EULA, support, extension policy
git clone https://github.com/32comic/image2pixel-web.git
cd image2pixel-web
node server.js # http://localhost:5000
Or open web/index.html directly. No npm install or bundler required (Node is only needed for server.js).
Current: v1.1.0
web/js/algorithms.js and web/js/main.jsCustom restricted license — see LICENSE.
Copyright © 2024–2026 image2pixel.app. All rights reserved.
Personal / educational / non-commercial use is permitted under the license terms. Commercial use requires written permission.
Thanks to Pixel It for the inspiration.
$ claude mcp add image2pixel-web \
-- python -m otcore.mcp_server <graph>