view OrthancServer/Resources/Samples/Lua/CallDcm2Xml.lua @ 5875:94e6a9a66109 get-scu tip

new Config AcceptedSopClasses + propose only the contexts that are going to be used in the connection
author Alain Mazy <am@orthanc.team>
date Wed, 20 Nov 2024 09:58:12 +0100
parents d25f4c0fa160
children
line wrap: on
line source

function OnStoredInstance(instanceId, tags, metadata)
   -- Assume Latin1 encoding in dcm2xml
   local args = {}
   table.insert(args, '+Ca')
   table.insert(args, 'latin-1')

   Delete(CallSystem(instanceId, 'dcm2xml', args))
end