|
@@ -0,0 +1,59 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace app\common\library;
|
|
|
+use app\common\library\DicomTag;
|
|
|
+class DicomPaserTag {
|
|
|
+ const DICOM_TAG = [
|
|
|
+ "patientName" => DicomTag::patientName,
|
|
|
+ "patientId" => DicomTag::patientId,
|
|
|
+ "birthDate" => DicomTag::birthDate,
|
|
|
+ "birthTime" => DicomTag::birthTime,
|
|
|
+ "patientSex" => DicomTag::patientSex,
|
|
|
+ "pregnancy" => DicomTag::pregnancy,
|
|
|
+ "weight" => DicomTag::weight,
|
|
|
+ "institutionName" => DicomTag::institutionName,
|
|
|
+ "institutionCode" => DicomTag::institutionCode,
|
|
|
+ "patientAge" => DicomTag::patientAge,
|
|
|
+ "accessionNumber" => DicomTag::accessionNumber,
|
|
|
+ "studyId" => DicomTag::studyId,
|
|
|
+ "studyUid" => DicomTag::studyUid,
|
|
|
+ "studyDate" => DicomTag::studyDate,
|
|
|
+ "studyTime" => DicomTag::studyTime,
|
|
|
+ "modalities" => DicomTag::modalities,
|
|
|
+ "partExamined" => DicomTag::partExamined,
|
|
|
+ "studyDescription" => DicomTag::studyDescription,
|
|
|
+ "seriesDescription" => DicomTag::seriesDescription,
|
|
|
+ "seriesNumber" => DicomTag::seriesNumber,
|
|
|
+ "seriesUid" => DicomTag::seriesUid,
|
|
|
+ "modality" => DicomTag::modality,
|
|
|
+ "seriesDate" => DicomTag::seriesDate,
|
|
|
+ "seriesTime" => DicomTag::seriesTime,
|
|
|
+ "imagePosition" => DicomTag::imagePosition,
|
|
|
+ "imageOrientation" => DicomTag::imageOrientation,
|
|
|
+ "sliceThickness" => DicomTag::sliceThickness,
|
|
|
+ "spacingSlices" => DicomTag::spacingSlices,
|
|
|
+ "sliceLocation" => DicomTag::sliceLocation,
|
|
|
+ "MRAcquisition" => DicomTag::MRAcquisition,
|
|
|
+ "imageType" => DicomTag::imageType,
|
|
|
+ "imageId" => DicomTag::imageId,
|
|
|
+ "contentDate" => DicomTag::contentDate,
|
|
|
+ "contentTime" => DicomTag::contentTime,
|
|
|
+ "imageNumber" => DicomTag::imageNumber,
|
|
|
+ "pixel" => DicomTag::pixel,
|
|
|
+ "rows" => DicomTag::rows,
|
|
|
+ "columns" => DicomTag::columns,
|
|
|
+ "pixelSpacing" => DicomTag::pixelSpacing,
|
|
|
+ "bitsStored" => DicomTag::bitsStored,
|
|
|
+ "highBit" => DicomTag::highBit,
|
|
|
+ "pixelRepresentation" => DicomTag::pixelRepresentation,
|
|
|
+ "windowCenter" => DicomTag::windowCenter,
|
|
|
+ "windowWidth" => DicomTag::windowWidth,
|
|
|
+ "rescaleIntercept" => DicomTag::rescaleIntercept,
|
|
|
+ "rescaleSlope" => DicomTag::rescaleSlope,
|
|
|
+ "rescaleType" => DicomTag::rescaleType,
|
|
|
+ "SOPInstanceUID" => DicomTag::SOPInstanceUID,
|
|
|
+ "numberOfFrames" => DicomTag::numberOfFrames,
|
|
|
+ ];
|
|
|
+}
|
|
|
+
|
|
|
+
|