comparison OrthancFramework/Sources/Enumerations.h @ 5348:303e930fff0f

"/tools/create-dicom" can now be used to create Encapsulated 3D Manufacturing Model IODs (MTL, OBJ, or STL)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 02 Jul 2023 16:24:56 +0200
parents 5b2a5cc64cb1
children 33410f14033b
comparison
equal deleted inserted replaced
5347:4f686f6150c7 5348:303e930fff0f
39 static const char* const MIME_JSON_UTF8 = "application/json; charset=utf-8"; 39 static const char* const MIME_JSON_UTF8 = "application/json; charset=utf-8";
40 static const char* const MIME_PDF = "application/pdf"; 40 static const char* const MIME_PDF = "application/pdf";
41 static const char* const MIME_PNG = "image/png"; 41 static const char* const MIME_PNG = "image/png";
42 static const char* const MIME_XML = "application/xml"; 42 static const char* const MIME_XML = "application/xml";
43 static const char* const MIME_XML_UTF8 = "application/xml; charset=utf-8"; 43 static const char* const MIME_XML_UTF8 = "application/xml; charset=utf-8";
44
45 // Added in Orthanc 1.12.1
46 static const char* const MIME_OBJ = "model/obj";
47 static const char* const MIME_MTL = "model/mtl";
48 static const char* const MIME_STL = "model/stl";
44 49
45 /** 50 /**
46 * "No Internet Media Type (aka MIME type, content type) for PBM has 51 * "No Internet Media Type (aka MIME type, content type) for PBM has
47 * been registered with IANA, but the unofficial value 52 * been registered with IANA, but the unofficial value
48 * image/x-portable-arbitrarymap is assigned by this specification, 53 * image/x-portable-arbitrarymap is assigned by this specification,
77 MimeType_Woff2, 82 MimeType_Woff2,
78 MimeType_Zip, 83 MimeType_Zip,
79 MimeType_PrometheusText, // Prometheus text-based exposition format (for metrics) 84 MimeType_PrometheusText, // Prometheus text-based exposition format (for metrics)
80 MimeType_DicomWebJson, 85 MimeType_DicomWebJson,
81 MimeType_DicomWebXml, 86 MimeType_DicomWebXml,
82 MimeType_Ico 87 MimeType_Ico,
88 MimeType_Mtl, // MTL - New in Orthanc 1.12.1
89 MimeType_Obj, // OBJ - New in Orthanc 1.12.1
90 MimeType_Stl // STL - New in Orthanc 1.12.1
83 }; 91 };
84 92
85 93
86 enum Endianness 94 enum Endianness
87 { 95 {