A soft photograph and a game sprite are different assets. One stores continuous color; the other stores a finite grid of intentional pixels. If you convert image to pixel art without locking cell size, palette, and transparency first, the result looks like a blurry thumbnail instead of a readable character. This guide walks the Sorceress path—prepare the source, convert in True Pixel, inspect edges, then export a sharp PNG—verified against the live product source on July 20, 2026.

What convert image to pixel art must preserve for games
When you convert image to pixel art, you are not applying a filter for social media. You are reducing resolution and remapping color so a runtime can draw the sprite at integer scales without muddy edges. The exact phrase has 1,300 monthly searches and KD 20 in the DataForSEO pull generated July 20, 2026. Searchers want a pipeline that ends in a usable game asset, not a novelty posterization.
Three properties have to survive the pass:
- Silhouette. At the final cell size, a player should still recognize the body, weapon, and facing direction.
- Clustered color. Related pixels should share palette entries so shadows and materials read as blocks, not noise.
- Honest transparency. Background pixels must become alpha, not dark outlines that stick to the character after import.
The PNG specification is the usual delivery format because it preserves alpha and exact RGB values. That only helps if the conversion itself produced hard pixels. Soft anti-aliased edges encoded into a “pixel” PNG still blur when the engine scales them.
Treat conversion as acceptance testing. A pass means the sprite is readable at 1× on a zoomed grid and still readable at 2×, 3×, or 4× with nearest-neighbor scaling. A fail means you change size, palette, or source framing—not that you apply more blur on export.
Choose target size, palette, and transparency before converting
Decide the destination grid before you open a converter. Common indie targets are 16×16, 32×32, 48×48, and 64×64 for characters, with tiles often matching the same base unit. If the game camera shows the hero at 64 on-screen pixels, authoring at 32 and scaling ×2 is usually cleaner than authoring at 128 and hoping a shrink looks intentional.
Pick the palette budget next. Sorceress True Pixel ships classic presets including PICO-8 (16), SWEETIE-16, Endesga 32, Game Boy, CGA, NES (54), Grayscale, and 1-Bit, plus modes that sample a limited color count from the image. A locked game style sheet should name the preset or the max color count so every later prop matches the first sprite.
Plan transparency as a third decision. Flat studio backdrops are easy to chroma-key. Busy photographs are harder—crop tighter, replace the backdrop, or remove it before downscaling so background hues never enter the silhouette. If you leave the backdrop in, quantization will spend precious palette slots on wallpaper instead of the character.
Write the contract down in one line: “64×64 hero, PICO-8, transparent PNG, no dither for UI clarity.” That line becomes the checklist for every convert image to pixel art pass on the project.
Run the Sorceress convert image to pixel art workflow
Open True Pixel. In the current catalog it is marked Pro. The page converts images and videos into pixel-art frames with chroma keying, palette quantization, edge cleanup, outline controls, batch frame handling, and PNG download. Complementary tools for cleanup and sheet inspection are Canvas and Sprite Analyzer.
- Upload the source. True Pixel accepts PNG, JPG, WebP, GIF, MP4, and WebM. For a single sprite, start with a still PNG that already has a clear subject.
- Set target width and height. Defaults begin at 64×64; change them to the cell size your game actually draws.
- Choose palette mode. Select a preset or a constrained auto color count. Prefer “none” dithering when you need crisp HUD-like edges; use ordered or Floyd–Steinberg only when you intentionally want gradient texture.
- Remove the backdrop if needed. Enable chroma key, pick the key color, and tune tolerance. Optional AI-assisted Corridor Key removal can run for harder cutouts and may cost credits depending on resolution and backend; local/simple paths stay credit-free.
- Review outlines and contrast. Edge enhance, outline, brightness, and contrast controls exist for readability—use them to recover silhouette, not to invent detail the grid cannot hold.
- Download the PNG. True Pixel names exports with width, height, and output scale (for example a 4× preview PNG). Keep a 1× master when your pipeline needs the native grid.
- Inspect before engine import. Zoom the result on a checkerboard, then open multi-frame sheets in Sprite Analyzer when timing matters.
The conversion math runs in the browser on the source pixels. That means you can iterate size and palette quickly. It also means a bad source stays a bad source—True Pixel will not invent missing limb separation or repair a character fused into a busy photograph.

