Namespace: PdfSharp.BigGustave
The high level information about the image.
public struct ImageHeader
Inheritance Object → ValueType → ImageHeader
The width of the image in pixels.
public int Width { get; }
The height of the image in pixels.
public int Height { get; }
The bit depth of the image.
public byte BitDepth { get; }
The color type of the image.
public ColorType ColorType { get; }
The compression method used for the image.
public CompressionMethod CompressionMethod { get; }
The filter method used for the image.
public FilterMethod FilterMethod { get; }
The interlace method used by the image..
public InterlaceMethod InterlaceMethod { get; }
Create a new ImageHeader.
ImageHeader(int width, int height, byte bitDepth, ColorType colorType, CompressionMethod compressionMethod, FilterMethod filterMethod, InterlaceMethod interlaceMethod)
width Int32
height Int32
bitDepth Byte
colorType ColorType
compressionMethod CompressionMethod
filterMethod FilterMethod
interlaceMethod InterlaceMethod
string ToString()