The code below results in no change to FastBitmap.Data when it is ran on Linux (Ubuntu 20.04).
using (Graphics g = Graphics.FromImage(FastBmp.BaseBitmap))
using (SolidBrush brush = new SolidBrush(Color.Red))
{
g.FillRectangle(brush, 0, 0, FastBmp.Width, FastBmp.Height);
g.Flush();
}