pokecrystal-board/tools/png_dimensions.c

24 lines
622 B
C
Raw Normal View History

#define PROGRAM_NAME "png_dimensions"
#define USAGE_OPTS "front.png front.dimensions"
2016-08-24 18:56:07 -07:00
#include "common.h"
2016-08-24 18:56:07 -07:00
2021-09-02 15:37:36 -07:00
uint8_t read_png_dimensions(const char *filename) {
uint32_t width_px = read_png_width(filename);
if (width_px != 40 && width_px != 48 && width_px != 56) {
2021-09-02 00:04:40 -07:00
error_exit("Not a valid width for \"%s\": %" PRIu32 " px\n", filename, width_px);
2017-12-27 22:25:25 -08:00
}
uint8_t width_tiles = (uint8_t)(width_px / 8);
return (width_tiles << 4) | width_tiles;
2016-08-24 18:56:07 -07:00
}
int main(int argc, char *argv[]) {
2016-08-24 18:56:07 -07:00
if (argc < 3) {
usage_exit(1);
2016-08-24 18:56:07 -07:00
}
2021-09-02 15:37:36 -07:00
uint8_t output_byte = read_png_dimensions(argv[1]);
write_u8(argv[2], &output_byte, 1);
2016-08-24 18:56:07 -07:00
return 0;
}