Example #1
0
        private static bool EditStudy(PACSObj serwer, EyeStation.Model.Study studyToEdit, string tag, string value)
        {
            //Zmiana DICOMA
            DCMTK.GDCMANON(studyToEdit.FilePath, tag, replacePolishSymbols(value));
            //Zapis do PACS
            bool result = serwer.Store(studyToEdit.FilePath + ".dcm");

            return(result);
        }
Example #2
0
 public static bool EditLengths(PACSObj serwer, EyeStation.Model.Study studyToEdit, string value)
 {
     return(EditStudy(serwer, studyToEdit, "10,4000", value));
 }
Example #3
0
 public static bool EditAngles(PACSObj serwer, EyeStation.Model.Study studyToEdit, string value)
 {
     return(EditStudy(serwer, studyToEdit, "8,1030", value));
 }
Example #4
0
 private static bool EditSegmentation(PACSObj serwer, EyeStation.Model.Study studyToEdit)
 {
     return(true);
 }
Example #5
0
 public static bool EditDescription(PACSObj serwer, EyeStation.Model.Study studyToEdit, string value)
 {
     return(EditStudy(serwer, studyToEdit, "8,1080", value));
 }