servicepoint/crates/servicepoint_binding_cs/ServicePoint/Bitmap.cs

24 lines
508 B
C#
Raw Permalink Normal View History

namespace ServicePoint;
2024-05-13 00:17:40 +02:00
public sealed partial class Bitmap
2024-05-13 00:17:40 +02:00
{
public static Bitmap Load(nuint width, nuint height, ReadOnlySpan<byte> bytes)
2024-10-19 16:04:01 +02:00
{
unsafe
{
fixed (byte* bytesPtr = bytes)
{
return Load(width, height, bytesPtr, (nuint)bytes.Length);
}
}
}
2024-10-16 20:56:55 +02:00
public bool this[nuint x, nuint y]
2024-05-13 00:17:40 +02:00
{
get => Get(x, y);
set => Set(x, y, value);
2024-05-13 00:17:40 +02:00
}
public Span<byte> Data => UnsafeDataRef().AsSpan();
2024-05-13 00:17:40 +02:00
}