summaryrefslogtreecommitdiff
path: root/examples/decode_bmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/decode_bmp.c')
-rw-r--r--examples/decode_bmp.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/examples/decode_bmp.c b/examples/decode_bmp.c
index 8675b34..92efd34 100644
--- a/examples/decode_bmp.c
+++ b/examples/decode_bmp.c
@@ -62,12 +62,6 @@ int main(int argc, char *argv[])
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);
-
/* decode the image */
code = bmp_decode(&bmp);
/* code = bmp_decode_trans(&bmp, TRANSPARENT_COLOR); */
@@ -75,6 +69,13 @@ int main(int argc, char *argv[])
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;