]> Creatis software - clitk.git/blobdiff - common/vvImageWriter.h
Remove transparency for screenshot
[clitk.git] / common / vvImageWriter.h
index 3effb474235fe19c48ee7f25c14fd358ee182431..ae192b5e797aed7d9f4fa7254de452c895bd90cc 100644 (file)
@@ -3,7 +3,7 @@
 
   Authors belong to: 
   - University of LYON              http://www.universite-lyon.fr/
-  - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
+  - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
 
   This software is distributed WITHOUT ANY WARRANTY; without even
@@ -14,7 +14,7 @@
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-  ======================================================================-====*/
+  ===========================================================================**/
 #ifndef vvImageWriter_H
 #define vvImageWriter_H
 #include <string>
@@ -48,6 +48,9 @@ public:
     return mLastError;
   }
 
+  bool GetSaveTransform() { return mSaveTransform; }
+  void SetSaveTransform(bool b) { mSaveTransform = b; }
+
   //====================================================================
   // Main function
   void Update() {
@@ -66,6 +69,7 @@ protected:
 
   std::string mLastError;
   bool mUseAnObserver;
+  bool mSaveTransform;
 
   //====================================================================
   template<unsigned int VImageDimension>