Exemple #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="EncapsulatedPdfIod"/> class.
        /// </summary>
        /// <param name="dicomAttributeProvider">The DICOM attribute provider.</param>
        public EncapsulatedPdfIod(IDicomAttributeProvider dicomAttributeProvider)
        {
            _dicomAttributeProvider = dicomAttributeProvider;

            _patientModule = new PatientModuleIod(_dicomAttributeProvider);
            _clinicalTrialSubjectModule       = new ClinicalTrialSubjectModuleIod(_dicomAttributeProvider);
            _generalStudyModule               = new GeneralStudyModuleIod(_dicomAttributeProvider);
            _patientStudyModule               = new PatientStudyModuleIod(_dicomAttributeProvider);
            _clinicalTrialStudyModule         = new ClinicalTrialStudyModuleIod(_dicomAttributeProvider);
            _encapsulatedDocumentSeriesModule = new EncapsulatedDocumentSeriesModuleIod(_dicomAttributeProvider);
            _clinicalTrialSeriesModule        = new ClinicalTrialSeriesModuleIod(_dicomAttributeProvider);
            _generalEquipmentModule           = new GeneralEquipmentModuleIod(_dicomAttributeProvider);
            _scEquipmentModule          = new ScEquipmentModuleIod(_dicomAttributeProvider);
            _encapsulatedDocumentModule = new EncapsulatedDocumentModuleIod(_dicomAttributeProvider);
            _sopCommonModule            = new SopCommonModuleIod(_dicomAttributeProvider);
        }
Exemple #2
0
        public MimeTypeProcessorOutput Process(ImageStreamingContext context)
        {
            var output = new MimeTypeProcessorOutput
            {
                ContentType = OutputMimeType
            };

            var file = new DicomFile(context.ImagePath);

            file.Load(DicomReadOptions.StorePixelDataReferences);

            if (!file.SopClass.Equals(SopClass.EncapsulatedPdfStorage))
            {
                throw new WADOException(HttpStatusCode.NotImplemented, "image/pdf is not supported for this type of object: " + file.SopClass.Name);
            }

            var iod = new EncapsulatedDocumentModuleIod(file.DataSet);

            output.Output = iod.EncapsulatedDocument;
            return(output);
        }