comparison Plugins/Samples/Common/OrthancPluginCppWrapper.h @ 3919:6f11b3233a06 transcoding

OrthancPluginTranscodeDicomInstance() and OrthancPluginSerializeDicomInstance()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 12 May 2020 12:38:27 +0200
parents 0e3849268a55
children b99acc213937
comparison
equal deleted inserted replaced
3917:04fb907dfc85 3919:6f11b3233a06
1207 #endif 1207 #endif
1208 1208
1209 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 7, 0) 1209 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 7, 0)
1210 OrthancImage* GetDecodedFrame(unsigned int frameIndex) const; 1210 OrthancImage* GetDecodedFrame(unsigned int frameIndex) const;
1211 #endif 1211 #endif
1212
1213 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 7, 0)
1214 void Serialize(std::string& target) const;
1215 #endif
1216
1217 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 7, 0)
1218 static DicomInstance* Transcode(const void* buffer,
1219 size_t size,
1220 const std::string& transferSyntax);
1221 #endif
1212 }; 1222 };
1213 } 1223 }