ImageInfo

Overview

ImageInfo is a class in Aspose.Imaging FOSS for .NET.

The ImageInfo properties Format, Width, Height, BitDepth, and FrameCount expose the parsed header values; Width, Height, and BitDepth are nullable when the header is incomplete.

This class declares 1 method for ImageInfo objects in .NET programs. Available methods include: ImageInfo. Public members are accessible to any .NET application after installing the Aspose.Imaging FOSS for .NET package. Properties: BitDepth, Format, FrameCount, Height, Width.

Properties

NameTypeAccessDescription
FormatImageFormatReadGets the format.
Widthint?ReadGets the width.
Heightint?ReadGets the height.
BitDepthint?ReadGets the bit depth.
FrameCountint?ReadGets the frame count.

Methods

SignatureDescription
ImageInfo(format: ImageFormat, width: int?, height: int?, bitDepth: int?, frameCount: int?)Calls ImageInfo(format, width, height, bitDepth, frameCount) on this ImageInfo instance.

See Also