changeset 5112:b89833d7ce22

Fix support for image/jpg mime type in /tools/create-dicom
author Alain Mazy <am@osimis.io>
date Wed, 23 Nov 2022 11:47:44 +0100
parents 7547c7dfd017
children a3c3f13368ea c387ebeb67b5
files NEWS OrthancFramework/Sources/Enumerations.cpp OrthancFramework/Sources/Enumerations.h
diffstat 3 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Tue Nov 22 18:01:23 2022 +0100
+++ b/NEWS	Wed Nov 23 11:47:44 2022 +0100
@@ -25,6 +25,7 @@
 * /modalities/.../store now accepts "CalledAet", "Host", "Port" to override the modality configuration 
   from the configuration file for a specific operation.
 * /tools/metrics-prometheus: added orthanc_last_change and orthanc_up_time_s
+* Fix support for image/jpg mime type in /tools/create-dicom
 
 
 OrthancFramework (C++)
--- a/OrthancFramework/Sources/Enumerations.cpp	Tue Nov 22 18:01:23 2022 +0100
+++ b/OrthancFramework/Sources/Enumerations.cpp	Wed Nov 23 11:47:44 2022 +0100
@@ -1728,7 +1728,7 @@
       target = MimeType_Dicom;
       return true;
     }
-    else if (source == MIME_JPEG)
+    else if (source == MIME_JPEG || source == MIME_JPG)
     {
       target = MimeType_Jpeg;
       return true;
--- a/OrthancFramework/Sources/Enumerations.h	Tue Nov 22 18:01:23 2022 +0100
+++ b/OrthancFramework/Sources/Enumerations.h	Wed Nov 23 11:47:44 2022 +0100
@@ -35,6 +35,7 @@
 
   static const char* const MIME_BINARY = "application/octet-stream";
   static const char* const MIME_JPEG = "image/jpeg";
+  static const char* const MIME_JPG = "image/jpg";
   static const char* const MIME_JSON = "application/json";
   static const char* const MIME_JSON_UTF8 = "application/json; charset=utf-8";
   static const char* const MIME_PDF = "application/pdf";