using System;
using gdcm;
namespace GDCMTest
{
class SimplePrintPatientName
{
static int Main(string[] args)
{
if (args.Length != 1)
{
Console.WriteLine("This program prints the patient name of a dicom file with gdcm");
Console.WriteLine("Usage: [input.dcm]");
return 1;
}
reader.SetFileName(args[0]);
bool ret = reader.Read();
if( !ret )
{
return 1;
}
filter.SetFile(file);
string value = filter.ToString(
new gdcm.Tag(0x0010, 0x0010));
Console.WriteLine("Patient Name: " + value);
return 0;
}
}
}