Show / Hide Table of Contents

Class ImageFileDirectory

Represents an image file directory.

Inheritance
System.Object
ImageFileDirectory
Namespace: ExifLibrary
Assembly: ExifLibrary.dll
Syntax
public class ImageFileDirectory

Constructors

| Improve this Doc View Source

ImageFileDirectory()

Initializes a new instance of the ImageFileDirectory class.

Declaration
public ImageFileDirectory()

Properties

| Improve this Doc View Source

Fields

The fields contained in this IFD.

Declaration
public List<ImageFileDirectoryEntry> Fields { get; }
Property Value
Type Description
System.Collections.Generic.List<ImageFileDirectoryEntry>
| Improve this Doc View Source

NextIFDOffset

Offset to the next IFD.

Declaration
public uint NextIFDOffset { get; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

Strips

Compressed image data.

Declaration
public List<TIFFStrip> Strips { get; }
Property Value
Type Description
System.Collections.Generic.List<TIFFStrip>

Methods

| Improve this Doc View Source

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

Returns a ImageFileDirectory initialized from the given byte data.

Declaration
public static ImageFileDirectory 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
ImageFileDirectory

A ImageFileDirectory initialized from the given byte data.

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