Skip to main content

Struct ImageInfo

Namespace: VelloSharp
Assembly: VelloSharp.dll

public readonly record struct ImageInfo : IEquatable<ImageInfo>

Implements

IEquatable<ImageInfo>

Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

Constructors

ImageInfo(int, int, RenderFormat, ImageAlphaMode, int)

public ImageInfo(int Width, int Height, RenderFormat Format, ImageAlphaMode AlphaMode, int Stride)

Parameters

Width int

Height int

Format RenderFormat

AlphaMode ImageAlphaMode

Stride int

Properties

AlphaMode

public ImageAlphaMode AlphaMode { get; init; }

Property Value

ImageAlphaMode

Format

public RenderFormat Format { get; init; }

Property Value

RenderFormat

Height

public int Height { get; init; }

Property Value

int

Stride

public int Stride { get; init; }

Property Value

int

Width

public int Width { get; init; }

Property Value

int