15 void readpng(void *dest, const char *fname, readpng_what what)
18 png_structp png_ptr = NULL;
19 png_infop info_ptr = NULL;
20 png_bytepp row_ptr = NULL;
22 if (dest == NULL || fname == NULL)
27 fp = fopen(fname, "rb");
30 lprintf(__FILE__ ": failed to open: %s\n", fname);
34 png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
37 lprintf(__FILE__ ": png_create_read_struct() failed\n");
42 info_ptr = png_create_info_struct(png_ptr);
45 lprintf(__FILE__ ": png_create_info_struct() failed\n");
50 png_init_io(png_ptr, fp);
51 png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_STRIP_16 | PNG_TRANSFORM_STRIP_ALPHA | PNG_TRANSFORM_PACKING, NULL);
52 row_ptr = png_get_rows(png_ptr, info_ptr);
55 lprintf(__FILE__ ": png_get_rows() failed\n");
59 // lprintf("%s: %ix%i @ %ibpp\n", fname, (int)info_ptr->width, (int)info_ptr->height, info_ptr->pixel_depth);
66 unsigned short *dst = dest;
67 if (info_ptr->pixel_depth != 24)
69 lprintf(__FILE__ ": bg image uses %ibpp, needed 24bpp\n", info_ptr->pixel_depth);
72 height = info_ptr->height;
73 if (height > BG_HEIGHT) height = BG_HEIGHT;
74 width = info_ptr->width;
75 if (width > BG_WIDTH) width = BG_WIDTH;
77 for (h = 0; h < height; h++)
79 unsigned char *src = row_ptr[h];
84 *dst++ = ((src[2]&0xf8)<<8) | ((src[1]&0xf8)<<3) | (src[0] >> 3); // BGR
86 *dst++ = ((src[0]&0xf8)<<8) | ((src[1]&0xf8)<<3) | (src[2] >> 3); // RGB
90 dst += BG_WIDTH - width;
98 unsigned char *dst = dest;
99 if (info_ptr->width != 128 || info_ptr->height != 160)
101 lprintf(__FILE__ ": unexpected font image size %ix%i, needed 128x160\n",
102 (int)info_ptr->width, (int)info_ptr->height);
105 if (info_ptr->pixel_depth != 8)
107 lprintf(__FILE__ ": font image uses %ibpp, needed 8bpp\n", info_ptr->pixel_depth);
110 for (y = 0; y < 16; y++)
112 for (x = 0; x < 16; x++)
114 for (y1 = 0; y1 < 10; y1++)
116 unsigned char *src = row_ptr[y*10 + y1] + x*8;
117 for (x1 = 8/2; x1 > 0; x1--, src+=2)
118 *dst++ = ((src[0]^0xff) & 0xf0) | ((src[1]^0xff) >> 4);
125 case READPNG_SELECTOR:
128 unsigned char *dst = dest;
129 if (info_ptr->width != 8 || info_ptr->height != 10)
131 lprintf(__FILE__ ": unexpected selector image size %ix%i, needed 8x10\n",
132 (int)info_ptr->width, (int)info_ptr->height);
135 if (info_ptr->pixel_depth != 8)
137 lprintf(__FILE__ ": selector image uses %ibpp, needed 8bpp\n", info_ptr->pixel_depth);
140 for (y1 = 0; y1 < 10; y1++)
142 unsigned char *src = row_ptr[y1];
143 for (x1 = 8/2; x1 > 0; x1--, src+=2)
144 *dst++ = ((src[0]^0xff) & 0xf0) | ((src[1]^0xff) >> 4);
152 png_destroy_read_struct(&png_ptr, info_ptr ? &info_ptr : NULL, (png_infopp)NULL);