A jam sprite is not a soft illustration scaled down in an image editor. Searchers who type how to make a pixel art want integer cells, a short palette, and a sheet the engine can draw without blur. This guide walks that path on Sorceress: lock the grid in True Pixel, clean edges in Canvas, animate when you need a walk strip, then import with nearest-neighbor scaling.
What how to make a pixel art means for games
Pixel art is artwork built at the pixel level. The Wikipedia Pixel art page (verified 2026-09-23) frames it as deliberate placement of individual pixels, not a filtered photo. When you ask how to make a pixel art asset for a game, 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 make a pixel art for games is a different question from painting a concept piece at 4K and hoping the engine will forgive it. Soft gradients and anti-aliased outlines turn to mush the moment a camera zooms. A 48×64 hero with sixteen locked colors reads at walking distance on a phone. A noisy photo crop does not.
People also search pixel art how to make, how to make pixel art games, and how to make pixel art game. Those intents fold into the same pipeline once you decide the cell size: prep the alpha, quantize, pack frames, import with crisp scaling. The sections below stay on that sheet path. If you already have a photographic still and only need a conversion verb, the companion guide on convert an image to pixel art covers that angle. This page is about building a game-ready sheet end to end.
True Pixel: how to make a pixel art sheet from any still
Sorceress True Pixel is the tool that answers how to make a pixel art sprite from an image or video on this site. The Sprites & 2D home card badges it Pro and describes video or image input becoming a pixel-art animated sprite (verified 2026-09-23 in src/app/_home-v2/_data/tools.ts). The live page is /pixel-art.
Facts verified 2026-09-23 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 how to make a pixel art run for a single pose:
- 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 (3 credits per still, verified 2026-09-23), 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 source. 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.
Canvas edits before the grid locks
Sorceress Canvas is the Free in-browser editor on the Image Tools row (badge verified 2026-09-23). 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. How to make a pixel art sheet on a messy full-frame screenshot means spending the dither pass fighting the background instead of shaping the character.