Patch by Marco Bubke: Uncompressed TIFF is now really fully uncompressed (see issue #334)

This commit is contained in:
Oliver Duis 2010-11-17 20:14:06 +01:00
parent eae41b8693
commit cf9b082d60

View File

@ -907,6 +907,8 @@ bool EditorPanel::idle_sendToGimp( ProgressConnector<rtengine::IImage16*> *pc){
SaveFormat sf; SaveFormat sf;
sf.format = "tif"; sf.format = "tif";
sf.tiffBits = 16; sf.tiffBits = 16;
sf.tiffUncompressed = true;
sf.saveParams = true;
Glib::ustring fileName = Glib::ustring::compose ("%1.%2", fname, sf.format); Glib::ustring fileName = Glib::ustring::compose ("%1.%2", fname, sf.format);