Hi.
To get the whole information of the DICOM images you need to download the desire level or levels (study, series, instances) and extract the info that you want.
To achieve this, dcm4chee provides a set of tools (
http://www.dcm4che.org/confluence/display/d2/dcm4che2+DICOM+Toolkit) that depending of your app implementation you can use in one way or other (eg. calling by terminal or working with java classes (I recomend you the second way, if it is possible for you)).
E.g by command line:
1. Get a study from PACS to your local machine (
http://www.dcm4che.org/confluence/display/d2/dcmqr)
$ ./dcmqr -L DCMQR:11112 DCM4...@192.168.1.xx:11112 -q00080050=(Accession Number) -cget -cstore 1.2.840.10008.5.1.4.1.1.1(SOP class UID) -cstoredest ~/temp/tempDCM/fileDICOM
2. Converts dcm file on xml file (
http://www.dcm4che.org/confluence/display/d2/dcm2xml)
$ ./dcm2xml -X ~/temp/tempDCM/fileDICOM/filex.xxx.x.xxx.xxxxx.xxxxx.x -o ~/temp/tempDCM/xmlFile.xml
3. Parse xmlFile and do your stuff with dataI hope that can help.
Best regards,
carvilsi