Mercurial > hg > orthanc
comparison 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 |
comparison
equal
deleted
inserted
replaced
5053:1e435be86887 | 5054:255b02c68908 |
---|---|
315 | 315 |
316 /** | 316 /** |
317 * {summary}{Graylevel, unsigned 64bpp image.} | 317 * {summary}{Graylevel, unsigned 64bpp image.} |
318 * {description}{The image is graylevel. Each pixel is unsigned and stored in 8 bytes.} | 318 * {description}{The image is graylevel. Each pixel is unsigned and stored in 8 bytes.} |
319 **/ | 319 **/ |
320 PixelFormat_Grayscale64 = 10 | 320 PixelFormat_Grayscale64 = 10, |
321 | |
322 /** | |
323 * {summary}{Color image in RGBA64 format.} | |
324 * {description}{This format describes a color image. The pixels are stored in 8 | |
325 * consecutive bytes. The memory layout is RGBA.} | |
326 **/ | |
327 PixelFormat_RGBA64 = 11 | |
321 }; | 328 }; |
322 | 329 |
323 | 330 |
324 /** | 331 /** |
325 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} | 332 * {summary}{The extraction mode specifies the way the values of the pixels are scaled when downloading a 2D image.} |