我想在 dicom 文件中插入虚拟数据而不使用 LEADTOOLS 读取该文件。例如。我想插入
Patient_Name = xyz etc.
因此,任何人都知道使用哪种 LEADTOOLS 方法在 dicom 文件中插入/编辑患者数据。
我想在 dicom 文件中插入虚拟数据而不使用 LEADTOOLS 读取该文件。例如。我想插入
Patient_Name = xyz etc.
因此,任何人都知道使用哪种 LEADTOOLS 方法在 dicom 文件中插入/编辑患者数据。
尝试这个
dicomdataset.InsertElementAndSetValue(DicomTag.PatientName, "Namrata");
DicomElement element = ds.FindFirstElement(null, DicomTag.PatientName, false);
if (element == null)
{
element = ds.InsertElement(null, false, DicomTag.PatientName, DicomVRType.PN, false, 0);
}