C# 클래스 ImageMagick.MagickSettings

파일 보기 프로젝트 열기: dlemstra/Magick.NET 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Clone MagickSettings
CreateInstance INativeInstance
CreateNativeInstance INativeInstance
GetFormat string
GetModule MagickFormat
GetOption string
MagickSettings System
SetDefine void
SetOption void
SetOptionAndArtifact void
SetOptionAndArtifact void

공개 메소드들

메소드 설명
GetDefine ( MagickFormat format, string name ) : string

Returns the value of a format-specific option.

GetDefine ( string name ) : string

Returns the value of a format-specific option.

RemoveDefine ( MagickFormat format, string name ) : void

Removes the define with the specified name.

RemoveDefine ( string name ) : void

Removes the define with the specified name.

SetDefine ( MagickFormat format, string name, string value ) : void

Sets a format-specific option.

SetDefine ( string name, string value ) : void

Sets a format-specific option.

SetDefines ( [ defines ) : void

Sets format-specific options with the specified defines.

보호된 메소드들

메소드 설명
Copy ( MagickSettings settings ) : void

Copies the settings from the specified MagickSettings.

ParseDefine ( MagickFormat format, string name ) : string

Creates a define string for the specified format and name.

비공개 메소드들

메소드 설명
Clone ( ) : MagickSettings
CreateInstance ( MagickSettings instance ) : INativeInstance
CreateNativeInstance ( ) : INativeInstance
GetFormat ( ) : string
GetModule ( MagickFormat format ) : MagickFormat
GetOption ( string key ) : string
MagickSettings ( ) : System
SetDefine ( MagickFormat format, string name, bool flag ) : void
SetOption ( string key, string value ) : void
SetOptionAndArtifact ( string key, double value ) : void
SetOptionAndArtifact ( string key, string value ) : void

메소드 상세

Copy() 보호된 메소드

Copies the settings from the specified MagickSettings.
protected Copy ( MagickSettings settings ) : void
settings MagickSettings The settings to copy the data from.
리턴 void

GetDefine() 공개 메소드

Returns the value of a format-specific option.
public GetDefine ( MagickFormat format, string name ) : string
format MagickFormat The format to get the option for.
name string The name of the option.
리턴 string

GetDefine() 공개 메소드

Returns the value of a format-specific option.
public GetDefine ( string name ) : string
name string The name of the option.
리턴 string

ParseDefine() 보호된 정적인 메소드

Creates a define string for the specified format and name.
protected static ParseDefine ( MagickFormat format, string name ) : string
format MagickFormat The format to set the define for.
name string The name of the define.
리턴 string

RemoveDefine() 공개 메소드

Removes the define with the specified name.
public RemoveDefine ( MagickFormat format, string name ) : void
format MagickFormat The format to set the define for.
name string The name of the define.
리턴 void

RemoveDefine() 공개 메소드

Removes the define with the specified name.
public RemoveDefine ( string name ) : void
name string The name of the define.
리턴 void

SetDefine() 공개 메소드

Sets a format-specific option.
public SetDefine ( MagickFormat format, string name, string value ) : void
format MagickFormat The format to set the option for.
name string The name of the option.
value string The value of the option.
리턴 void

SetDefine() 공개 메소드

Sets a format-specific option.
public SetDefine ( string name, string value ) : void
name string The name of the option.
value string The value of the option.
리턴 void

SetDefines() 공개 메소드

Sets format-specific options with the specified defines.
public SetDefines ( [ defines ) : void
defines [ The defines to set.
리턴 void