Table of Contents

Class AthenaImageBase

Namespace
Resolver.Athena.Images
Assembly
Resolver.Athena.dll
public abstract class AthenaImageBase
Inheritance
AthenaImageBase
Derived
Inherited Members

Properties

Format

Gets the format of the image.

public abstract ImageFormat Format { get; }

Property Value

ImageFormat

Methods

ComputeMd5Hash()

Computes the MD5 hash of the image data.

public virtual string ComputeMd5Hash()

Returns

string

A lowercase hexadecimal string representing the MD5 hash.

ComputeSha1Hash()

Computes the SHA-1 hash of the image data.

public virtual string ComputeSha1Hash()

Returns

string

A lowercase hexadecimal string representing the SHA-1 hash.

GetBytes()

Gets the raw byte representation of the image.

public abstract Span<byte> GetBytes()

Returns

Span<byte>

A span of bytes representing the image data.