namespace Minint.Core.Services;
public interface IBmpExporter
{
///
/// Exports a composited ARGB pixel buffer as a 32-bit BMP file.
///
/// Output stream.
/// Pixel data packed as 0xAARRGGBB, row-major.
/// Image width.
/// Image height.
void Export(Stream stream, uint[] pixels, int width, int height);
}