From cf9b082d6061e4bfb20a26e62d4f6f24f107be9f Mon Sep 17 00:00:00 2001 From: Oliver Duis Date: Wed, 17 Nov 2010 20:14:06 +0100 Subject: [PATCH] Patch by Marco Bubke: Uncompressed TIFF is now really fully uncompressed (see issue #334) --- rtgui/editorpanel.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index 6339bce6c..42b4e9ac8 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -907,6 +907,8 @@ bool EditorPanel::idle_sendToGimp( ProgressConnector *pc){ SaveFormat sf; sf.format = "tif"; sf.tiffBits = 16; + sf.tiffUncompressed = true; + sf.saveParams = true; Glib::ustring fileName = Glib::ustring::compose ("%1.%2", fname, sf.format);