diff OrthancFramework/Sources/Enumerations.h @ 5054:255b02c68908

Added support for RGBA64 images in tools/create-dicom and /preview (Contribution from James Manners - Pliny)
author Alain Mazy <am@osimis.io>
date Fri, 08 Jul 2022 15:26:52 +0200
parents afa427f65444
children c94c1e08340e
line wrap: on
line diff
--- a/OrthancFramework/Sources/Enumerations.h	Fri Jul 08 07:24:10 2022 +0200
+++ b/OrthancFramework/Sources/Enumerations.h	Fri Jul 08 15:26:52 2022 +0200
@@ -317,7 +317,14 @@
      * {summary}{Graylevel, unsigned 64bpp image.}
      * {description}{The image is graylevel. Each pixel is unsigned and stored in 8 bytes.}
      **/
-    PixelFormat_Grayscale64 = 10
+    PixelFormat_Grayscale64 = 10,
+
+    /**
+     * {summary}{Color image in RGBA64 format.}
+     * {description}{This format describes a color image. The pixels are stored in 8
+     * consecutive bytes. The memory layout is RGBA.}
+     **/
+    PixelFormat_RGBA64 = 11
   };