Skip to content

TBLImageInfo

Image information provided by image codecs.

Definition

Unit: Blend2D

type TBLImageInfo = record ... end;

Properties

Name Description
Compression Image compression (as understood by codec).
Density Pixel density per one meter, can contain fractions.
Depth Image depth.
Flags Image flags.
Format Image format (as understood by codec).
FrameCount Number of frames (0 = unknown/unspecified).
PlaneCount Number of planes.
RepeatCount Number of animation repeats (0 = infinite).
Size Image size.

Methods

Name Description
Reset

Property Descriptions

Compression

Image compression (as understood by codec).

property Compression: String read GetCompression

Type: String


Density

Pixel density per one meter, can contain fractions.

property Density: TBLSize read FDensity

Type: TBLSize


Depth

Image depth.

property Depth: Smallint read FDepth

Type: Smallint


Flags

Image flags.

property Flags: TBLImageInfoFlags read GetFlags

Type: TBLImageInfoFlags


Format

Image format (as understood by codec).

property Format: String read GetFormat

Type: String


FrameCount

Number of frames (0 = unknown/unspecified).

property FrameCount: Int64 read FFrameCount

Type: Int64


PlaneCount

Number of planes.

property PlaneCount: Smallint read FPlaneCount

Type: Smallint


RepeatCount

Number of animation repeats (0 = infinite).

property RepeatCount: Integer read FRepeatCount

Type: Integer


Size

Image size.

property Size: TBLSizeI read FSize

Type: TBLSizeI


Method Descriptions

Reset

procedure Reset; inline