C# 클래스 EvilDICOM.Core.IO.Reading.DICOMFileReader

Class for reading DICOM files
파일 보기 프로젝트 열기: rexcardan/Evil-DICOM

공개 메소드들

메소드 설명
Read ( byte fileBytes, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : DICOMObject

Reads a DICOM file from a byte array

Read ( string filePath, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : DICOMObject

Reads a DICOM file from a path

ReadAsync ( string filePath, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : Task

Asynchronously reads a DICOM file from a path

ReadFileMetadata ( byte fileBytes ) : DICOMObject

Read the meta data from the DICOM object

ReadFileMetadata ( string filePath ) : DICOMObject

Read the meta data from the DICOM object

ReadFileMetadata ( EvilDICOM.Core.IO.Reading.DICOMBinaryReader dr, TransferSyntax &syntax ) : List

Read explicit VR little endian up to transfer syntax element and determines transfer syntax for rest of elements

메소드 상세

Read() 공개 정적인 메소드

Reads a DICOM file from a byte array
public static Read ( byte fileBytes, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : DICOMObject
fileBytes byte the bytes of the DICOM file
trySyntax TransferSyntax
리턴 DICOMObject

Read() 공개 정적인 메소드

Reads a DICOM file from a path
public static Read ( string filePath, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : DICOMObject
filePath string the path to the DICOM file
trySyntax TransferSyntax
리턴 DICOMObject

ReadAsync() 공개 정적인 메소드

Asynchronously reads a DICOM file from a path
public static ReadAsync ( string filePath, TransferSyntax trySyntax = TransferSyntax.IMPLICIT_VR_LITTLE_ENDIAN ) : Task
filePath string the path to the DICOM file
trySyntax TransferSyntax
리턴 Task

ReadFileMetadata() 공개 정적인 메소드

Read the meta data from the DICOM object
public static ReadFileMetadata ( byte fileBytes ) : DICOMObject
fileBytes byte
리턴 DICOMObject

ReadFileMetadata() 공개 정적인 메소드

Read the meta data from the DICOM object
public static ReadFileMetadata ( string filePath ) : DICOMObject
filePath string the path to the DICOM file
리턴 DICOMObject

ReadFileMetadata() 공개 정적인 메소드

Read explicit VR little endian up to transfer syntax element and determines transfer syntax for rest of elements
public static ReadFileMetadata ( EvilDICOM.Core.IO.Reading.DICOMBinaryReader dr, TransferSyntax &syntax ) : List
dr EvilDICOM.Core.IO.Reading.DICOMBinaryReader the binary reader which is reading the DICOM object
syntax TransferSyntax the transfer syntax of the DICOM file
리턴 List