]> Creatis software - gdcm.git/blobdiff - gdcmPython/demo/PrintHeader.py
* src/gdcmDocEntrySet.[h|cxx], gdcmDocument.[h|cxx] : amelioration of
[gdcm.git] / gdcmPython / demo / PrintHeader.py
index 7648b483b3b1b06b460bad49a9ebd9a559c45fdd..3239266fa9e658ff7dc4907f1a529716273e8e20 100644 (file)
@@ -1,5 +1,6 @@
 from gdcmPython import *
 import sys
+import os
 
 ### Get filename from command line or default it
 try:
@@ -7,6 +8,11 @@ try:
 except IndexError:
    FileName = os.path.join(GDCM_DATA_PATH, "test.acr")
 
+try:
+   printLevel = int(sys.argv[2])
+except IndexError:
+   printLevel = 1
+
 #if not os.path.isfile(FileName):
 #   print "Cannot open file ", FileName
 #   sys.exit()
@@ -15,7 +21,8 @@ except IndexError:
 #s = raw_input("Hit any key in this window to exit")
 
 ### Build the header element list
-toRead = gdcmHeader(FileName)
+print FileName, type(FileName)
+toRead = gdcm.Header(FileName)
 if not toRead.IsReadable():
    print "The ", FileName, " file is not readable with gdcm. Sorry."
    sys.exit()
@@ -24,6 +31,10 @@ print "##############################################################"
 print "### Display all the elements and their respective values"
 print "## found in the ", FileName, " file."
 print "##############################################################"
+###toRead.SetPrintLevel(printLevel)
+###toRead.Print()
+
 ValDict = toRead.GetEntry()
 for key in ValDict.keys():
-       print "[%s] = [%s]" %(key, ValDict[key])
+       print "[%s] = [%s]" %(key, ValDict[key])
+