C# 클래스 EXIF_Tools.GlobalUtilityTool

파일 보기 프로젝트 열기: Dronolab/drono-exiftools

공개 프로퍼티들

프로퍼티 타입 설명
NEWVAL bool
OFFSET bool

공개 메소드들

메소드 설명
GetAltitudeAtFile ( string fileName ) : double

Return the altitude stored in a file

GetFocalLenghtAtFile ( string fileName ) : double

Return the focal lenght stored in a file

GetNbFilesWithExt ( string directoryName, string extension ) : int

Return the number of files of a certain extension in a directory

ReplaceAltitudeAtDirectory ( string directoryName, bool changeType, double newValue ) : int

This method changes the Altitude EXIF of all images inside a directory, directoryName : path to directory where changes are to occur changeType : OFFSET or NEWVAL newValue : value to work with Notes : This method uses ReplaceAltitudeAtFile extensively, see it for more details

ReplaceAltitudeAtFile ( string fileName, bool changeType, double newValue ) : bool

This method will replace and altitude EXIF fileName : path to the file to change changeType : OFFSET or NEWVAL newValue : value to work with If changeType is OFFSET, the resulting EXIF will be (original altitude + newValue) If changeType is NEWVAL, the resulting EXIF will be (newValue)

ReplaceFocalLenghtAtDirectory ( string directoryName, double newValue ) : int

This method changes the focal lenght EXIF of all images inside a directory, directoryName : path to directory where changes are to occur newValue : value to work with Notes : This method uses ReplaceAltitudeAtFile extensively, see it for more details

ReplaceFocalLenghtAtFile ( string fileName, double newValue ) : bool

This method will replace focal lenght EXIF fileName : path to the file to change newValue : value to work with If changeType is OFFSET, the resulting EXIF will be (original altitude + newValue) If changeType is NEWVAL, the resulting EXIF will be (newValue)

메소드 상세

GetAltitudeAtFile() 공개 정적인 메소드

Return the altitude stored in a file
public static GetAltitudeAtFile ( string fileName ) : double
fileName string
리턴 double

GetFocalLenghtAtFile() 공개 정적인 메소드

Return the focal lenght stored in a file
public static GetFocalLenghtAtFile ( string fileName ) : double
fileName string
리턴 double

GetNbFilesWithExt() 공개 정적인 메소드

Return the number of files of a certain extension in a directory
public static GetNbFilesWithExt ( string directoryName, string extension ) : int
directoryName string
extension string
리턴 int

ReplaceAltitudeAtDirectory() 공개 정적인 메소드

This method changes the Altitude EXIF of all images inside a directory, directoryName : path to directory where changes are to occur changeType : OFFSET or NEWVAL newValue : value to work with Notes : This method uses ReplaceAltitudeAtFile extensively, see it for more details
public static ReplaceAltitudeAtDirectory ( string directoryName, bool changeType, double newValue ) : int
directoryName string
changeType bool
newValue double
리턴 int

ReplaceAltitudeAtFile() 공개 정적인 메소드

This method will replace and altitude EXIF fileName : path to the file to change changeType : OFFSET or NEWVAL newValue : value to work with If changeType is OFFSET, the resulting EXIF will be (original altitude + newValue) If changeType is NEWVAL, the resulting EXIF will be (newValue)
public static ReplaceAltitudeAtFile ( string fileName, bool changeType, double newValue ) : bool
fileName string
changeType bool
newValue double
리턴 bool

ReplaceFocalLenghtAtDirectory() 공개 정적인 메소드

This method changes the focal lenght EXIF of all images inside a directory, directoryName : path to directory where changes are to occur newValue : value to work with Notes : This method uses ReplaceAltitudeAtFile extensively, see it for more details
public static ReplaceFocalLenghtAtDirectory ( string directoryName, double newValue ) : int
directoryName string
newValue double
리턴 int

ReplaceFocalLenghtAtFile() 공개 정적인 메소드

This method will replace focal lenght EXIF fileName : path to the file to change newValue : value to work with If changeType is OFFSET, the resulting EXIF will be (original altitude + newValue) If changeType is NEWVAL, the resulting EXIF will be (newValue)
public static ReplaceFocalLenghtAtFile ( string fileName, double newValue ) : bool
fileName string
newValue double
리턴 bool

프로퍼티 상세

NEWVAL 공개적으로 정적으로 프로퍼티

public static bool NEWVAL
리턴 bool

OFFSET 공개적으로 정적으로 프로퍼티

public static bool OFFSET
리턴 bool