/// <summary> /// Creates a XML file instance from the given ACR-NEMA or /// DICOM file content provider. /// </summary> public XmlFile(AcrNemaFile acrNemaFile) { this.acrNemaFile = acrNemaFile; }
/// <summary> /// Creates a XML file instance from the given ACR-NEMA or /// DICOM file content provider in consideration of /// pixel data exclusion. /// </summary> /// <remarks> /// If pixel data is supposed to be excluded, the entire DICOM /// group 7FE0 will be excluded from mapping to XML. /// </remarks> public XmlFile(AcrNemaFile acrNemaFile, bool excludePixelData) : this(acrNemaFile) { IsPixelDataExcluded = excludePixelData; }