From e5ed2f07d8ee7c25c331aed3c125da7763918db4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 4 Feb 2003 12:34:02 +0000 Subject: [PATCH] read/write files, not stdio (Daniel Borca) --- progs/samples/rgbtoppm.c | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/progs/samples/rgbtoppm.c b/progs/samples/rgbtoppm.c index 0bc73487b0d..116d9a8cfa5 100644 --- a/progs/samples/rgbtoppm.c +++ b/progs/samples/rgbtoppm.c @@ -256,18 +256,30 @@ int main(int argc, char **argv) { int width, height; GLubyte *data; + char buff[32]; + int n; + FILE *fo; - if (argc != 2) + if (argc != 3) { - fprintf(stderr, "usage: %s \n", argv[0]); + fprintf(stderr, "usage: %s \n", argv[0]); return 1; } data = read_rgb_texture(argv[1], &width, &height); - printf("P6\n%d %d\n255\n", width, height); - fwrite(data, width * 3, height, stdout); + n = sprintf(buff, "P6\n%d %d\n255\n", width, height); + + /* [dBorca] avoid LF to CRLF conversion */ + if ((fo = fopen(argv[2], "wb")) == NULL) { + fprintf(stderr, "Cannot open output file!\n"); + exit(1); + } + + fwrite(buff, n, 1, fo); + fwrite(data, width * 3, height, fo); + + fclose(fo); return 0; } -