From 8815700322c0c10cb0528b047b2c7604c2eeb053 Mon Sep 17 00:00:00 2001 From: Dien-Nhung Nguyen-Phu Date: Sun, 9 Jun 2024 12:59:34 +0700 Subject: Add support for .xbm bitmap file .xbm is easy to include in C as source file. It could be viewed and edited directly without need to be converted between images and C array. --- src/res/fossasia.xbm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/res/fossasia.xbm (limited to 'src/res/fossasia.xbm') diff --git a/src/res/fossasia.xbm b/src/res/fossasia.xbm new file mode 100644 index 0000000..e6a5a00 --- /dev/null +++ b/src/res/fossasia.xbm @@ -0,0 +1,14 @@ +#define fossasia_width 44 +#define fossasia_height 22 +static unsigned char fossasia_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x9c, 0xc7, 0xf3, 0x1c, 0x2f, 0x07, 0x42, 0x28, 0x08, 0xa0, 0x20, 0x08, + 0x42, 0x28, 0x08, 0xa0, 0x20, 0x08, 0x5f, 0xc8, 0x71, 0x3c, 0x27, 0x0f, + 0x42, 0x08, 0x82, 0x22, 0xa8, 0x08, 0x42, 0x08, 0x82, 0x22, 0xa8, 0x08, + 0x82, 0xe7, 0x79, 0xbc, 0x27, 0x0f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xdf, 0x0f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x63, 0x38, 0x0c, 0xe3, 0xd0, 0x08, + 0xbd, 0xd7, 0xf7, 0x5f, 0xdf, 0x07, 0xbd, 0xd7, 0xf7, 0x5f, 0xdf, 0x07, + 0xa0, 0x37, 0x8e, 0xc3, 0xd8, 0x00, 0xbd, 0xf7, 0x7d, 0xdd, 0x57, 0x07, + 0xbd, 0xf7, 0x7d, 0xdd, 0x57, 0x07, 0x7d, 0x18, 0x86, 0x43, 0xd8, 0x00, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0x0f, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x0f }; -- cgit v1.2.3