diff OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp @ 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 22966345eaba
children d4e5ca0c9307
line wrap: on
line diff
--- a/OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp	Fri Jul 08 07:24:10 2022 +0200
+++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp	Fri Jul 08 15:26:52 2022 +0200
@@ -1064,7 +1064,7 @@
           targetHeight = boost::math::iround(ratio * static_cast<float>(decoded->GetHeight()));
         }
         
-        if (decoded->GetFormat() == PixelFormat_RGB24)
+        if (decoded->GetFormat() == PixelFormat_RGB24 || decoded->GetFormat() == PixelFormat_RGB48)
         {
           if (targetWidth == decoded->GetWidth() &&
               targetHeight == decoded->GetHeight())