Product launch

de-ASCII 1.0 turns ASCII art back into image output

A practical guide to de-ASCII 1.0: deterministic ASCII to image reconstruction, ANSI color preservation, embeddable UI, MCP support, text-readable reconstruction, and optional AI restoration.

June 11, 20265 min readMichael Barbine

Short answer

de-ASCII is a browser, API, and MCP tool that reconstructs PNG images from arbitrary pasted ASCII, ANSI terminal art, Unicode Braille/block/box-drawing art, and ASCII generated by ascii.platphormnews.com. It preserves embedded color when present, estimates luminance and color for monochrome sources, includes text-oriented glyph reconstruction, and can optionally run an AI restoration pass without requiring a reference photo or inventing new text.

Why de-ASCII exists

Image-to-ASCII tools are useful, but the reverse path is usually treated as a novelty. de-ASCII 1.0 turns that reverse path into a product-grade reconstruction workflow: paste ASCII art, import an ASCII converter handoff, preserve color metadata when it exists, tune the deterministic renderer, and export an image.

Color reconstruction comes first

The highest quality path is source color. de-ASCII reads ANSI SGR 16-color, 256-color, and truecolor sequences, and it accepts exact hex color grids from ascii.platphormnews.com. When the source is monochrome, colorization is deterministic and labeled as an estimate rather than pretending to know the original.

Deterministic output before AI

The core renderer does not need an image model. Character density maps to luminance, cell geometry restores source aspect ratio, and smoothing/sharpening controls let the user balance crisp ASCII structure against photo-like softness. Hybrid and glyph modes now include bitmap masks for Latin letters, digits, and common text marks so literal ASCII text, code, signs, and labels can survive small-cell reconstruction. Optional AI enhancement only runs when requested and treats the ASCII-derived reconstruction as a restoration target rather than a prompt for a new image.

Built for browsers, APIs, and agents

de-ASCII ships as an interactive browser tool, an embeddable widget, a public REST API, and a Model Context Protocol server. Discovery files, OpenAPI, RSS, sitemap, LLMS files, and well-known trust metadata are part of the launch surface so humans, crawlers, answer engines, and agents can all inspect the same public contract.

API quickstart
curl -X POST https://deascii.platphormnews.com/api/deascii \
  -H "Content-Type: application/json" \
  -d '{
    "ascii": " .:-=+*#%@",
    "charset": "auto",
    "cellSize": 10,
    "cellAspect": 2,
    "smoothing": 3,
    "renderMode": "tonal",
    "colorize": { "mode": "smart", "strength": 0.88 },
    "contrast": 1.08,
    "sharpen": 0.3
  }'

Launch checklist

  • ASCII to image reconstruction with bounded PNG export
  • ANSI and exact color-grid preservation
  • Text-readable hybrid/glyph reconstruction for letters, digits, code, signs, and labels
  • Smart deterministic colorization for monochrome ASCII
  • AI restoration prompts that preserve composition and visible text
  • Embeddable page for iframe integrations
  • REST API, OpenAPI 3.1, and MCP JSON-RPC support
  • LLMS.txt, LLMS full reference, RSS, sitemap, trust, and security metadata
  • Localized entry pages and hreflang sitemap alternates