Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ImageFileDirectoryOffset Property
See Also 
Leadtools.Codecs Namespace > CodecsTiffLoadOptions Class : ImageFileDirectoryOffset Property



Gets or sets the offset within a TIFF file where a page starts.

Syntax

Visual Basic (Declaration) 
Public Property ImageFileDirectoryOffset As Long
Visual Basic (Usage)Copy Code
Dim instance As CodecsTiffLoadOptions
Dim value As Long
 
instance.ImageFileDirectoryOffset = value
 
value = instance.ImageFileDirectoryOffset
C# 
public long ImageFileDirectoryOffset {get; set;}
C++/CLI 
public:
property long ImageFileDirectoryOffset {
   long get();
   void set (long value);
}

Return Value

The offset within a TIFF file where the page starts.

Example

For an example, refer to CodecsTiffOptions.

Remarks

This serves as a reference page for loading pages from a large TIFF file.

The value of the UseImageFileDirectoryOffset must be set to true in order for the toolkit to use the ImageFileDirectoryOffset value when loading TIFF images.

Some restrictions apply to this function if you use an IFD to indicate to which page to write a comment, tag, metadata, or GeoKey. See the Loading and Saving Large Tiff Files topic for more information.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also