A photo of a knight is not a sprite. The camera noise, the soft focus, and the studio backdrop fight the grid the moment you drop the file into an engine. Searchers who type convert an image to pixel art want that still remapped onto integer cells, a short palette, and a PNG that still reads at walking distance on a phone.
What convert an image to pixel art means for sprites
Pixel art is artwork built at the pixel level. The Wikipedia Pixel art page (verified 2026-09-22) frames it as deliberate placement of individual pixels, not a filtered photo. When you convert an image to pixel art for a game, you are not applying a stylish blur. You are choosing a target width and height, forcing every color onto a limited set, and writing a file whose edges stay hard under nearest-neighbor scale.
That is why how to convert an image to pixel art is a different question from how to make pixel art for games from a blank canvas. Hand-painting starts empty. Conversion starts with evidence: a pose, a costume, a prop silhouette you already like. The job is to keep the silhouette while throwing away photographic detail the engine cannot afford and the player cannot resolve at 32 or 64 pixels tall.
People also search pixel art how to make and how to make pixel art games. Both intents fold into the same pipeline once you have a still: prep the alpha, quantize, export, import with crisp scaling. The sections below stay on that path. If you need a full sheet of walk frames from a prompt instead of a photo, jump to Quick Sprites at the end. That is a generator path, not a conversion path.
True Pixel: the convert an image to pixel art surface
Sorceress True Pixel is the tool that converts an image to pixel art in this workflow. The Sprites & 2D home card badges it Pro and describes video or image input becoming a pixel-art animated sprite (verified 2026-09-22 in src/app/_home-v2/_data/tools.ts). The live page is /pixel-art.
Facts verified 2026-09-22 in src/app/pixel-art/page.tsx:
- Eight palette presets: PICO-8 (16), SWEETIE-16, Endesga 32, Game Boy (4), CGA (16), NES (54), Grayscale (8), 1-Bit (2).
- Three dither modes:
none,ordered(Bayer),floyd-steinberg, with an intensity slider when dither is on. - Master resolution longest side capped at
MASTER_RES_LONGSIDE = 256before you pick the final export size. - Chroma key and Corridor Key background removal sit on the same surface. Cloud Corridor Key costs
Math.max(1, Math.ceil(frameCount / 10) * (maxDim > 512 ? 2 : 1))credits. Local Corridor Key is 0 credits.
A typical convert an image to pixel art run:
- Open True Pixel and drop a PNG or JPG of a single character or prop. Prefer a clear silhouette. Avoid tiny faces buried in a wide landscape crop.
- If the backdrop is a flat green or blue plate, enable chroma key and pick the plate color on the preview. If the backdrop is photographic, matte first with BG Remover (next section), then upload the transparent PNG.
- Pick a palette preset that matches the rest of the game. PICO-8 and SWEETIE-16 read as indie defaults. Game Boy and 1-Bit are for deliberate monochrome. NES is for larger, more colorful sheets.
- Set the target width and height to the size you will draw in the engine, not the size of the photo. A 48×64 hero is common for side-view jams.
- Start with dither
none. If gradients band badly, tryorderedat a moderate intensity, thenfloyd-steinbergonly if you still need softer steps. - Download the PNG. Open it on a checkerboard. Confirm empty pixels are actually empty before you celebrate.
Clean leftover fringe in Canvas before you quantize
Sorceress Canvas is the Free in-browser editor on the Image Tools row (badge verified 2026-09-22). It is not a second pixel converter. It is where you crop, erase, and fill before True Pixel locks the grid. A noisy margin becomes a ring of junk colors after quantization. A tilted crop becomes a jagged outline you will fight for the rest of the jam.
Use Canvas when:
- The still has a huge empty margin around a small figure. Crop it so the character fills most of the frame.
- A matte left a pale halo. Erase the halo. Do not blur it into the hair.
- A sleeve has a hole. Sample a nearby opaque pixel with the picker and brush it closed.
Then send or re-upload the cleaned still into True Pixel. Convert an image to pixel art on a messy full-frame screenshot and you will spend the dither pass fighting the background instead of shaping the character.
Matte photographic backdrops with BG Remover
When the source is an AI character render on a room or gradient, a hue key will not save you. BG Remover is the still-image AI powered cutout on Sorceress. The home card badges it AI Credits. The page bills BG_REMOVER_CREDITS = 3 per image, accepts PNG/JPG/WebP under 5 MB, and downloads a transparent PNG (verified 2026-09-22 against the bg-remover page constants used across the suite).
Order of operations for how to convert an image to pixel art from a photographic still:
- Run BG Remover. Download the PNG with alpha.
- Optional: open Canvas, erase fringe, crop tight.
- Drop that PNG into True Pixel and quantize.
Do not run a neural matte and a chroma key on the same pixels and expect them to agree. Pick the method that matches how the picture was made. Flat plate → chroma or Corridor Key inside True Pixel. Photo backdrop → BG Remover first.