summaryrefslogtreecommitdiff
path: root/examples/decode_ico.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/decode_ico.c')
-rw-r--r--examples/decode_ico.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/examples/decode_ico.c b/examples/decode_ico.c
index c940606..c917c99 100644
--- a/examples/decode_ico.c
+++ b/examples/decode_ico.c
@@ -74,18 +74,19 @@ int main(int argc, char *argv[])
bmp = ico_find(&ico, width, height);
assert(bmp);
- printf("P3\n");
- printf("# %s\n", argv[1]);
- printf("# width %u \n", bmp->width);
- printf("# height %u \n", bmp->height);
- printf("%u %u 256\n", bmp->width, bmp->height);
-
code = bmp_decode(bmp);
/* code = bmp_decode_trans(bmp, TRANSPARENT_COLOR); */
if (code != BMP_OK) {
warning("bmp_decode", code);
exit(1);
}
+
+ printf("P3\n");
+ printf("# %s\n", argv[1]);
+ printf("# width %u \n", bmp->width);
+ printf("# height %u \n", bmp->height);
+ printf("%u %u 256\n", bmp->width, bmp->height);
+
{
uint16_t row, col;
uint8_t *image;