Created
December 24, 2014 17:02
-
-
Save simonmd/ca82d7920dba829d28ed to your computer and use it in GitHub Desktop.
Coerce para corregir el encoding DICOM cuando no vienen con SpecificCharacterSet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:output method="xml" indent="no"/> | |
<xsl:template match="/dataset"> | |
<dataset> | |
<attr tag="00080005" vr="CS">ISO_IR 100</attr> | |
</dataset> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Excelente, ya lo probé, ¿lo aplico en los DicomBox o en los Servidores?