summaryrefslogtreecommitdiff
path: root/examples/decode_ico.c
diff options
context:
space:
mode:
authorSean Fox <dyntryx@gmail.com>2009-01-24 08:44:28 +0000
committerSean Fox <dyntryx@gmail.com>2009-01-24 08:44:28 +0000
commitdbf879a4defdf06743230cb8c88f38ee06b37837 (patch)
treefcb439d45c190df08fbc3da47d5681a0f20203d7 /examples/decode_ico.c
parent45968abbfb5060f56cfcd19e9d82afc4797b9455 (diff)
downloadlibnsbmp-dbf879a4defdf06743230cb8c88f38ee06b37837.tar.gz
libnsbmp-dbf879a4defdf06743230cb8c88f38ee06b37837.tar.bz2
Check for proper image decoding /prior/ to outputting anything.
svn path=/trunk/libnsbmp/; revision=6220
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;