File: gray2x3.c

package info (click to toggle)
mia 2.4.7-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,332 kB
  • sloc: cpp: 162,690; python: 1,317; sh: 321; xml: 127; makefile: 41; csh: 24; ansic: 9
file content (12 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
/* GIMP RGB C-Source image dump (gray2x3.c) */

static const struct {
  guint  	 width;
  guint  	 height;
  guint  	 bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */ 
  guint8 	 pixel_data[2 * 3 * 3 + 1];
} gimp_image = {
  2, 3, 3,
  "\0\0\0???\200\200\200\276\276\276\345\345\345\377\377\377",
};