Show / Hide Table of Contents

Struct ImageFileDirectoryEntry

Represents an entry in the image file directory.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: ExifLibrary
Assembly: ExifLibrary.dll
Syntax
public struct ImageFileDirectoryEntry

Constructors

| Improve this Doc View Source

ImageFileDirectoryEntry(UInt16, UInt16, UInt32, Byte[])

Initializes a new instance of the ImageFileDirectoryEntry struct.

Declaration
public ImageFileDirectoryEntry(ushort tag, ushort type, uint count, byte[] data)
Parameters
Type Name Description
System.UInt16 tag

The tag that identifies the field.

System.UInt16 type

Field type identifier.

System.UInt32 count

Count of Type.

System.Byte[] data

Field data.

Fields

| Improve this Doc View Source

Count

Count of Type.

Declaration
public uint Count
Field Value
Type Description
System.UInt32
| Improve this Doc View Source

Data

Field data.

Declaration
public byte[] Data
Field Value
Type Description
System.Byte[]
| Improve this Doc View Source

Tag

The tag that identifies the field.

Declaration
public ushort Tag
Field Value
Type Description
System.UInt16
| Improve this Doc View Source

Type

Field type identifier.

Declaration
public ushort Type
Field Value
Type Description
System.UInt16

Methods

| Improve this Doc View Source

FromBytes(Byte[], UInt32, BitConverterEx.ByteOrder)

Returns a ImageFileDirectoryEntry initialized from the given byte data.

Declaration
public static ImageFileDirectoryEntry FromBytes(byte[] data, uint offset, BitConverterEx.ByteOrder byteOrder)
Parameters
Type Name Description
System.Byte[] data

The data.

System.UInt32 offset

The offset into data.

BitConverterEx.ByteOrder byteOrder

The byte order of data.

Returns
Type Description
ImageFileDirectoryEntry

A ImageFileDirectoryEntry initialized from the given byte data.

Back to top Copyright © 2019 Özgür Özçıtak