[]
Represents a single frame in TIFF file.
public class TiffFrame
Public Class TiffFrame
Name | Description |
---|---|
Artist | Gets a string that describes a person who created the image. |
Copyright | Gets a string with image copyright notice. |
DateTime | Gets a string with date and time of image creation in “YYYY:MM:DD HH:MM:SS”, with hours like those on a 24-hour clock, and one space character between the date and the time. |
DpiX | Gets the horizontal DPI of the image. |
DpiY | Gets the vertical DPI of the image. |
ExifProfile | Gets or sets an instance of ExifProfile with Exif metadata of the image. |
FrameIndex | Gets the index of the frame in the associated TIFF file. |
HostComputer | Gets a string that describes the computer and/or operating system in use at the time of image creation. |
ImageDescription | Gets a string that describes the subject of the image. |
ImageLength | Gets the number of rows (sometimes described as scanlines) in the image. |
ImageWidth | Gets the number of columns in the image, i.e., the number of pixels per scanline. |
IsBilevelBitmap | Gets a value indicating if the frame can be read as a BilevelBitmap. |
IsGrayscaleBitmap | Gets a value indicating if the frame can be read as a GrayscaleBitmap. |
IsIndexed4bppBitmap | Gets a value indicating if the frame can be read as a Indexed4bppBitmap. |
IsIndexed8bppBitmap | Gets a value indicating if the frame can be read as a Indexed8bppBitmap. |
IsValid | Gets a value indicating whether or not an image can be read from the TIFF frame. |
Make | Gets a string that describes the scanner manufacturer. |
Model | Gets a string with the scanner model name or number. |
Opaque | Gets a value indicating whether the alpha channel of the image should be ignored. |
Orientation | Gets the orientation of the image. |
PrimaryChromaticities | Gets the chromaticities of the primaries of the image. |
Reader | Gets the associated GcTiffReader. |
Software | Gets a string with the name and version number of the software package(s) used to create the image. |
ValidationResult | Gets a value specifying the reason if an image cannot be loaded from the TIFF frame. |
WhitePoint | Gets the chromaticity of the white point of the image. |
Name | Description |
---|---|
ReadAsBilevelBitmap(bool) | Gets the frame image as a BilevelBitmap. |
ReadAsGrayscaleBitmap(bool) | Gets the frame image as a GrayscaleBitmap. |
ReadAsIndexed4bppBitmap(bool) | Gets the frame image as a Indexed4bppBitmap. |
ReadAsIndexed8bppBitmap(bool) | Gets the frame image as a Indexed8bppBitmap. |
ToGcBitmap() | Gets the frame image as a GcBitmap. |
ToGcBitmap(GcBitmap, bool) | Reads the frame image into an existing GcBitmap. |
ToImage(ImageBinding) | Creates an Image object for the frame. |