Mercurial > hg > orthanc
view OrthancServer/Resources/Samples/Lua/CallDcm2Xml.lua @ 4709:a9a75281cae9 openssl-3.x
fix build on MSVC 2008 32bit
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 22 Jun 2021 10:26:27 +0200 |
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