comparison Core/Enumerations.h @ 2423:5a7c5c541a1d

Built-in decoding of palette images
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Oct 2017 21:58:08 +0200
parents 7e217a1cc63f
children 878b59270859
comparison
equal deleted inserted replaced
2422:b340f0a9022c 2423:5a7c5c541a1d
197 * {summary}{Graylevel, floating-point image.} 197 * {summary}{Graylevel, floating-point image.}
198 * {description}{The image is graylevel. Each pixel is floating-point and stored in 4 bytes.} 198 * {description}{The image is graylevel. Each pixel is floating-point and stored in 4 bytes.}
199 **/ 199 **/
200 PixelFormat_Float32 = 6, 200 PixelFormat_Float32 = 6,
201 201
202 // This is the memory layout for Cairo (internal use) 202 // This is the memory layout for Cairo (for internal use in Stone of Orthanc)
203 PixelFormat_BGRA32 = 7, 203 PixelFormat_BGRA32 = 7,
204 204
205 /** 205 /**
206 * {summary}{Graylevel, unsigned 32bpp image.} 206 * {summary}{Graylevel, unsigned 32bpp image.}
207 * {description}{The image is graylevel. Each pixel is unsigned and stored in 4 bytes.} 207 * {description}{The image is graylevel. Each pixel is unsigned and stored in 4 bytes.}
208 **/ 208 **/
209 PixelFormat_Grayscale32 = 8 209 PixelFormat_Grayscale32 = 8,
210
211 /**
212 * {summary}{Color image in RGB48 format.}
213 * {description}{This format describes a color image. The pixels are stored in 6
214 * consecutive bytes. The memory layout is RGB.}
215 **/
216 PixelFormat_RGB48 = 9
210 }; 217 };
211 218
212 219
213 /** 220 /**
214 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} 221 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.}