Method | Description | |
---|---|---|
CreateThumbnail ( ) : |
Returns the thumbnail in the exif profile when available.
|
|
ExifProfile ( ) : System |
Initializes a new instance of the ExifProfile class.
|
|
ExifProfile ( Stream stream ) : System |
Initializes a new instance of the ExifProfile class.
|
|
ExifProfile ( byte data ) : System |
Initializes a new instance of the ExifProfile class.
|
|
ExifProfile ( string fileName ) : System |
Initializes a new instance of the ExifProfile class.
|
|
GetValue ( ExifTag tag ) : ExifValue |
Returns the value with the specified tag.
|
|
RemoveValue ( ExifTag tag ) : bool |
Removes the value with the specified tag.
|
|
SetValue ( ExifTag tag, object value ) : void |
Sets the value of the specified tag.
|
Method | Description | |
---|---|---|
UpdateData ( ) : void |
Updates the data of the profile.
|
Method | Description | |
---|---|---|
Initialize ( ) : void | ||
InitializeValues ( ) : void |
public ExifProfile ( Stream stream ) : System | ||
stream | Stream | The stream to read the exif profile from. |
return | System |
public ExifProfile ( byte data ) : System | ||
data | byte | The byte array to read the exif profile from. |
return | System |
public ExifProfile ( string fileName ) : System | ||
fileName | string | The fully qualified name of the exif profile file, or the relative /// exif profile file name. |
return | System |
public GetValue ( ExifTag tag ) : ExifValue | ||
tag | ExifTag | The tag of the exif value. |
return | ExifValue |
public RemoveValue ( ExifTag tag ) : bool | ||
tag | ExifTag | The tag of the exif value. |
return | bool |
public SetValue ( ExifTag tag, object value ) : void | ||
tag | ExifTag | The tag of the exif value. |
value | object | The value. |
return | void |