diff Framework/Deprecated/Toolbox/OrthancApiClient.h @ 1227:a1c0c9c9f9af broker

deprecating SliceImageQuality enum
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 08 Dec 2019 12:06:44 +0100
parents 21c2b0eee53c
children 0ca50d275b9a
line wrap: on
line diff
--- a/Framework/Deprecated/Toolbox/OrthancApiClient.h	Sun Dec 08 11:57:46 2019 +0100
+++ b/Framework/Deprecated/Toolbox/OrthancApiClient.h	Sun Dec 08 12:06:44 2019 +0100
@@ -29,6 +29,17 @@
 
 namespace Deprecated
 {
+  enum SliceImageQuality
+  {
+    SliceImageQuality_FullPng,  // smaller to transmit but longer to generate on Orthanc side (better choice when on low bandwidth)
+    SliceImageQuality_FullPam,  // bigger to transmit but faster to generate on Orthanc side (better choice when on localhost or LAN)
+    SliceImageQuality_Jpeg50,
+    SliceImageQuality_Jpeg90,
+    SliceImageQuality_Jpeg95,
+
+    SliceImageQuality_InternalRaw   // downloads the raw pixels data as they are stored in the DICOM file (internal use only)
+  };  
+
   class OrthancApiClient :
       public OrthancStone::IObservable,
       public OrthancStone::ObserverBase<OrthancApiClient>