rexpaint
REXPaint .xp parser
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Passing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install rexpaint
choosenim install rexpaint
git clone https://github.com/irskep/rexpaint_nim
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| rexpaint | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/irskep/rexpaint_nim |
|---|---|
| Homepage | https://github.com/irskep/rexpaint_nim |
| Documentation | View Documentation |
| Registry Source | nimble_official |
README
REXPaint for Nim
import rexpaint
let image = newREXPaintImage("xptest.xp")
# "REXPaintImage(10x10, 2 layers)"
echo image
# layer, x, y
let cell = image.get(0, 0, 0)
echo "code: ", cell.code
echo "foreground color: ", cell.fgColor
echo "background color: ", cell.bgColor