view Resources/Samples/Lua/CallDcm2Xml.lua @ 2289:89d17c72287b

Modality worklist: added logs to display the number of files parsed and number of matches
author Alain Mazy <alain@mazy.be>
date Fri, 23 Jun 2017 16:43:29 +0200
parents 921532f67770
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