This commit is contained in:
Ross
2021-02-11 20:16:57 +00:00
parent 1fe3fa6753
commit bf8a775a05
+2
View File
@@ -14,4 +14,6 @@ def image_as_base64(image_file):
# encoded_string = base64.b64encode(img_f.read())
encoded_string = base64.b64encode(image_file.file.read())
mimetype, enc = mimetypes.guess_type(image_file.path)
if "dicom" in mimetype:
return "data:{};base64,{}".format(mimetype, encoded_string.decode("utf-8"))
return "data:image/{};base64,{}".format(mimetype, encoded_string.decode("utf-8"))