-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpattern.c
More file actions
25 lines (23 loc) · 1.35 KB
/
pattern.c
File metadata and controls
25 lines (23 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* GIMP RGBA C-Source image dump (pattern.c) */
static struct {
unsigned int width;
unsigned int height;
unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
unsigned char pixel_data[9 * 9 * 4 + 1];
} gimp_image = {
9, 9, 4,
"\331\227m\377\331\227m\377\331\227m\377\331\227m\377\331\227m\377\331\227"
"m\377\331\227m\377\331\227m\377\331\227m\377\331\227m\377\360~\062\377\360"
"~\062\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\331"
"\227m\377\331\227m\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\360"
"~\062\377\360~\062\377\360~\062\377\331\227m\377\331\227m\377\360~\062\377\360"
"~\062\377\377t\000\377\377t\000\377\377t\000\377\360~\062\377\360~\062\377\331\227"
"m\377\331\227m\377\360~\062\377\360~\062\377\377t\000\377\377t\000\377\377t\000\377"
"\360~\062\377\360~\062\377\331\227m\377\331\227m\377\360~\062\377\360~\062\377"
"\377t\000\377\377t\000\377\377t\000\377\360~\062\377\360~\062\377\331\227m\377\331"
"\227m\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\360"
"~\062\377\360~\062\377\331\227m\377\331\227m\377\360~\062\377\360~\062\377\360"
"~\062\377\360~\062\377\360~\062\377\360~\062\377\360~\062\377\331\227m\377\331"
"\227m\377\331\227m\377\331\227m\377\331\227m\377\331\227m\377\331\227m\377"
"\331\227m\377\331\227m\377\331\227m\377",
};