From 9e0e369e4dd660074aa852f7ff8305570e30666e Mon Sep 17 00:00:00 2001 From: Nick Lamb /GIMP Date: Sun, 30 Jan 2000 05:01:58 +0000 Subject: [PATCH] Images we save are full size (duh) Applied to fix #5000 after some discussion and thought, this is really Quark's bug, but who am I to argue? --- ChangeLog | 6 ++++++ plug-ins/common/tiff.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 488cf8b6b0..f690de6057 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Jan 31 02:55:00 GMT 2000 Nick Lamb + + * plug-ins/common/tiff.c: Images we save are full size (duh) + Applied to fix #5000 after some discussion and thought, this + is really Quark's bug, but who am I to argue? + Mon Jan 31 01:42:54 CET 2000 Sven Neumann * app/brush_select.c: get serious... diff --git a/plug-ins/common/tiff.c b/plug-ins/common/tiff.c index 225792431b..0025436fe1 100644 --- a/plug-ins/common/tiff.c +++ b/plug-ins/common/tiff.c @@ -1272,6 +1272,7 @@ static gint save_image (char *filename, rowsperstrip = 1; /* Set TIFF parameters. */ + TIFFSetField (tif, TIFFTAG_SUBFILETYPE, 0); TIFFSetField (tif, TIFFTAG_IMAGEWIDTH, cols); TIFFSetField (tif, TIFFTAG_IMAGELENGTH, rows); TIFFSetField (tif, TIFFTAG_BITSPERSAMPLE, bitspersample);