1 /* GIMP RGBA C-Source image dump (brush-image.h) */
2 
3 static const struct {
4   unsigned int 	 width;
5   unsigned int 	 height;
6   unsigned int 	 bytes_per_pixel; /* 3:RGB, 4:RGBA */
7   unsigned char	 pixel_data[7 * 7 * 4 + 1];
8 } brush_image = {
9   7, 7, 4,
10   "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377"
11   "\0\0\0\3776\0\0\377i\0\0\3776\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377"
12   "i\0\0\377\177\0\0\377i\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\3776\0\0\377"
13   "i\0\0\3776\0\0\377\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377"
14   "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
15   "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0",
16 };
17 
18