Table of Contents

Class ImageSubFile

Namespace
ValveResourceFormat.IO
Assembly
ValveResourceFormat.dll

Represents an image sub-file with a bitmap and extraction function.

public sealed class ImageSubFile : SubFile

Inheritance

Inherited Members

Properties

Bitmap

Gets or initializes the bitmap data.

public SKBitmap Bitmap { get; init; }

Property Value

SKBitmap

Extract

Gets or sets the extraction function that returns the file data.

public override Func<byte[]> Extract { get; }

Property Value

Func<byte[]>

ImageExtract

Gets or initializes the image extraction function.

public Func<SKBitmap, byte[]> ImageExtract { get; init; }

Property Value

Func<SKBitmap, byte[]>