report in osimis

Hi :vulcan_salute:t2:
I need make and save a medical report in a web-viewer. I found Osimis and in documentation I saw a picture where on one screen DICOM with report (6.10 Report display). But I can’t find an information how can I open or create the report in Osimis web-viewer Снимок экрана 2022-05-24 в 19.03.41.png

Osimis Web Viewer Documentation.pdf (3.06 MB)

Hi,

The viewer only displays the report (PDF reports embedded in DICOM file) but you can not create the report with it.

Note that, once you have a PDF, you can embed it in a DICOM file through the Orthanc Rest API: https://book.orthanc-server.com/users/advanced-rest.html#attaching-pdf-file-as-dicom-series

HTH

Alain

Снимок экрана 2022-05-24 в 19.03.41.jpg

Thanks, do you know a plugin which includes viewer and possibility of making a report?

вторник, 24 мая 2022 г. в 19:36:27 UTC+7, a…@orthanc.team:

1 Like

Hello,

To the best of my knowledge, there is no such plugin for Orthanc right now.

Sébastien-

There ir any advice of dicom viewer that can making a report? Linux , Windows or web?

1 Like

If anyone is interested I would be willing to collaborate a bit on that. It is relatively easy to do using the Python Plug-in, but it would require some work to make it into a plug-in that is fairly robust.

I have been using the wkhtmltopdf package:

https://wkhtmltopdf.org/

baked into an orthanc instance using the Docker Build. That adds a bit to the package, but not too much.

There are also PIP modules for Python for wkhtmltopdf:

import pdfkit # https://pypi.org/project/pdfkit/, sudo python3 -m pip install pdfkit
from pdfkit import configuration
from pdfkit import from_string

wkhtmltopdf if open source and it does a pretty decent job of converting HTML (including any CSS) into PDF documents.

If you are creating reports on the front end using HTML (e.g. even CKeditor would work), or something like the reports from here:

https://radreport.org/ (No longer being developed)

Adding some reporting features would be a nice addition. I am also interested in fully implementing pagination and sorting in the Explorer 2. That also isn’t too difficult in Python.

/sds

1 Like