From 1da2a17da3c0ab4059ef99d7cda997acf1ecef2a Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Thu, 13 Mar 2003 07:59:35 +0000 Subject: [PATCH] write a newline after G4 data. --- pdf_g4.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pdf_g4.c b/pdf_g4.c index b5a5dee..e91fec8 100644 --- a/pdf_g4.c +++ b/pdf_g4.c @@ -4,7 +4,7 @@ * will be compressed using ITU-T T.6 (G4) fax encoding. * * PDF routines - * $Id: pdf_g4.c,v 1.13 2003/03/12 22:56:57 eric Exp $ + * $Id: pdf_g4.c,v 1.14 2003/03/12 23:59:35 eric Exp $ * Copyright 2003 Eric Smith * * This program is free software; you can redistribute it and/or modify @@ -78,6 +78,7 @@ static void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file, struct pdf_g4_image *image = app_data; bitblt_write_g4 (image->bitmap, pdf_file->f); + pdf_stream_printf (pdf_file, stream, "\r\n"); }