-
-
Notifications
You must be signed in to change notification settings - Fork 0
DotArt File Format
origin edited this page Mar 24, 2026
·
1 revision
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": [...] }