comparison OrthancCppClient/SharedLibrary/AUTOGENERATED/OrthancCppClient.h @ 865:f2841a9e04cf jpeg

force enumeration values in c++ client
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Jun 2014 17:27:26 +0200
parents 55bce9b55054
children de18e90d5507
comparison
equal deleted inserted replaced
864:2c545bb20dd3 865:f2841a9e04cf
505 * @brief Graylevel, signed 16bpp image. 505 * @brief Graylevel, signed 16bpp image.
506 * 506 *
507 * The image is graylevel. Each pixel is signed and stored in two bytes. 507 * The image is graylevel. Each pixel is signed and stored in two bytes.
508 * 508 *
509 **/ 509 **/
510 PixelFormat_SignedGrayscale16 = 4, 510 PixelFormat_SignedGrayscale16 = 5,
511 /** 511 /**
512 * @brief Color image in RGB24 format. 512 * @brief Color image in RGB24 format.
513 * 513 *
514 * Color image in RGB24 format. 514 * This format describes a color image. The pixels are stored in 3 consecutive bytes. The memory layout is RGB.
515 * 515 *
516 **/ 516 **/
517 PixelFormat_RGB24 = 0, 517 PixelFormat_RGB24 = 1,
518 /** 518 /**
519 * @brief Color image in RGBA32 format. 519 * @brief Color image in RGBA32 format.
520 * 520 *
521 * Color image in RGBA32 format. 521 * This format describes a color image. The pixels are stored in 4 consecutive bytes. The memory layout is RGBA.
522 * 522 *
523 **/ 523 **/
524 PixelFormat_RGBA32 = 1, 524 PixelFormat_RGBA32 = 2,
525 /** 525 /**
526 * @brief Graylevel 8bpp image. 526 * @brief Graylevel 8bpp image.
527 * 527 *
528 * The image is graylevel. Each pixel is unsigned and stored in one byte. 528 * The image is graylevel. Each pixel is unsigned and stored in one byte.
529 * 529 *
530 **/ 530 **/
531 PixelFormat_Grayscale8 = 2, 531 PixelFormat_Grayscale8 = 3,
532 /** 532 /**
533 * @brief Graylevel, unsigned 16bpp image. 533 * @brief Graylevel, unsigned 16bpp image.
534 * 534 *
535 * The image is graylevel. Each pixel is unsigned and stored in two bytes. 535 * The image is graylevel. Each pixel is unsigned and stored in two bytes.
536 * 536 *
537 **/ 537 **/
538 PixelFormat_Grayscale16 = 3 538 PixelFormat_Grayscale16 = 4
539 }; 539 };
540 } 540 }
541 541
542 namespace Orthanc 542 namespace Orthanc
543 { 543 {
554 * @brief Truncation to the [-32768, 32767] range. 554 * @brief Truncation to the [-32768, 32767] range.
555 * 555 *
556 * Truncation to the [-32768, 32767] range. 556 * Truncation to the [-32768, 32767] range.
557 * 557 *
558 **/ 558 **/
559 ImageExtractionMode_Int16 = 3, 559 ImageExtractionMode_Int16 = 4,
560 /** 560 /**
561 * @brief Rescaled to 8bpp. 561 * @brief Rescaled to 8bpp.
562 * 562 *
563 * The minimum value of the image is set to 0, and its maximum value is set to 255. 563 * The minimum value of the image is set to 0, and its maximum value is set to 255.
564 * 564 *
565 **/ 565 **/
566 ImageExtractionMode_Preview = 0, 566 ImageExtractionMode_Preview = 1,
567 /** 567 /**
568 * @brief Truncation to the [0, 255] range. 568 * @brief Truncation to the [0, 255] range.
569 * 569 *
570 * Truncation to the [0, 255] range. 570 * Truncation to the [0, 255] range.
571 * 571 *
572 **/ 572 **/
573 ImageExtractionMode_UInt8 = 1, 573 ImageExtractionMode_UInt8 = 2,
574 /** 574 /**
575 * @brief Truncation to the [0, 65535] range. 575 * @brief Truncation to the [0, 65535] range.
576 * 576 *
577 * Truncation to the [0, 65535] range. 577 * Truncation to the [0, 65535] range.
578 * 578 *
579 **/ 579 **/
580 ImageExtractionMode_UInt16 = 2 580 ImageExtractionMode_UInt16 = 3
581 }; 581 };
582 } 582 }
583 583
584 namespace OrthancClient 584 namespace OrthancClient
585 { 585 {