-
Thanks you very much.
According to you dicom file contain different type of image
how can i find the type of image in dcm file. ?
and if no type is save then default type is which?
Thanks and Regards.
Ketan.
2009-03-27 09:40:04 UTC in DICOM#
-
Thanks for the reply.
I make following change.
Stream ins = null;
DcmParser parser = null;
Dataset ds = null;
FileInfo objFileinfo = new FileInfo(@"D:\Dicom files\349211.DCM");
ins = new BufferedStream(new FileStream(objFileinfo.FullName, FileMode.Open, FileAccess.Read));
parser = new DcmParser(ins);
FileFormat format = parser.DetectFileFormat();
if (format != null)
{.
2009-03-27 08:54:17 UTC in DICOM#
-
Main problem:
I want to generate .jpg from .dcm file
I load the dicom image from the following code.
Stream ins = null;
DcmParser parser = null;
Dataset ds = null;
ins = new BufferedStream(new FileStream(file.FullName, FileMode.Open, FileAccess.Read));
parser = new DcmParser(ins);
FileFormat format = parser.DetectFileFormat();
if (format != null)
{
ds = new...
2009-03-27 05:38:49 UTC in DICOM#
-
I load the dicom image from the following code.
Stream ins = null;
DcmParser parser = null;
Dataset ds = null;
ins = new BufferedStream(new FileStream(file.FullName, FileMode.Open, FileAccess.Read));
parser = new DcmParser(ins);
FileFormat format = parser.DetectFileFormat();
if (format != null)
{
ds = new Dataset();
parser.DcmHandler = ds.DcmHandler;
parser.Parse.
2009-03-27 05:29:36 UTC in DICOM#
-
I have .DCM file i want to read patient's name from file's header it is possible using this dll.
2009-03-18 16:42:47 UTC in DICOM#