Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/create-dicom.py @ 860:3e8a3a900e9e
Orthanc 1.11.1
| author | Alain Mazy <am@osimis.io> |
|---|---|
| date | Thu, 30 Jun 2022 16:48:08 +0200 |
| parents | ba2403ebd4b7 |
| children |
line wrap: on
line source
import json import orthanc def OnChange(changeType, level, resource): if changeType == orthanc.ChangeType.ORTHANC_STARTED: tags = { 'SOPClassUID' : '1.2.840.10008.5.1.4.1.1.1', 'PatientID' : 'HELLO', 'PatientName' : 'WORLD', } with open('Lena.png', 'rb') as f: img = orthanc.UncompressImage(f.read(), orthanc.ImageFormat.PNG) s = orthanc.CreateDicom(json.dumps(tags), img, orthanc.CreateDicomFlags.GENERATE_IDENTIFIERS) with open('/tmp/sample.dcm', 'wb') as f: f.write(s) dicom = orthanc.CreateDicomInstance(s) frame = dicom.GetInstanceDecodedFrame(0) print('Size of the frame: %dx%d' % (frame.GetImageWidth(), frame.GetImageHeight())) orthanc.RegisterOnChangeCallback(OnChange)
