Mercurial > hg > orthanc
diff OrthancServer/ParsedDicomFile.h @ 1555:d6a93e12b1c1
Creation of DICOM files with encapsulated PDF
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 20 Aug 2015 15:18:13 +0200 |
parents | 6e7e5ed91c2d |
children | b8dc2f855a83 |
line wrap: on
line diff
--- a/OrthancServer/ParsedDicomFile.h Thu Aug 20 11:56:42 2015 +0200 +++ b/OrthancServer/ParsedDicomFile.h Thu Aug 20 15:18:13 2015 +0200 @@ -104,6 +104,9 @@ void EmbedImage(const std::string& dataUriScheme); + void EmbedImage(const std::string& mime, + const std::string& content); + void ExtractImage(ImageBuffer& result, unsigned int frame); @@ -121,6 +124,10 @@ void ToJson(Json::Value& target, bool simplify); + + bool HasTag(const DicomTag& tag) const; + + void EmbedPdf(const std::string& pdf); }; }