Skip to content

DotArt File Format

origin edited this page Mar 24, 2026 · 1 revision

DotArt File Format

DotArt uses a JSON-based format to store pixel artwork.

The JSON file contains:

  • canvas size
  • color palette
  • pixel data

Example:

{ "width": 16, "height": 16, "palette": ["#000000", "#ffffff"], "pixels": [...] }

Clone this wiki locally