📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
503 B

namespace GenericImage
{
public class ImageRgba64 : IImageBase<ulong>
{
public ImageRgba64(int width, int height)
{
this.Width = width;
this.Height = height;
this.Pixels = new ulong[width * height * 4];
}
public ulong[] Pixels { get; }
public int Width { get; }
public int Height { get; }
public IPixelAccessor Lock()
{
return new PixelAccessorRgba64(this);
}
}
}