0x55
⬛️ Image editor for 5x5 binary sprites
Install / Use
/learn @danprince/0x55README
<strong>0x55</strong> is an image editor for 5x5 binary sprites.
The pixels of the images are encoded as bits in row-major order. This makes them ideal for embedding directly into source code for emulators, games, and retro user interfaces.
Unlike conventional images, you'll need to write some code to render these sprites.
let sprite = 0x7FF8FEBF;
for (let y = 0; y < 5; y++) {
for (let x = 0; x < 5; x++) {
let bit = 1 & (sprite >> x + y * 5);
setPixel(x, y, bit);
}
}
For a canvas setPixel could call ctx.fillRect, or perhaps set pixels directly on imageData.
Related Skills
node-connect
347.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
