- compress to a .zip
- change file extension to
.aseprite-extension - Edit -> Preferences -> Extensions -> Add Extension... to add the extension to aseprite
This will convert the selected area into a monochrome uint8_t array and copy that array to the clipboard for easy tranfer of graphics from asepsrite to device firmware.
// size: 8 x 5
static const uint8_t THE_IMG[] = {
0b00010000,
0b00011000,
0b00110100,
0b01111010,
0b01111110,
};- the script will pad 0's to the nearest 8bit alignment
- the script will read only the active layer + cel + selection