You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guard.IsTrue(pixelMemoryOwner.Memory.Length>=width*height,nameof(pixelMemoryOwner),"The length of the input memory is less than the specified image size");
148
+
Guard.IsTrue(pixelMemoryOwner.Memory.Length>=(long)width*height,nameof(pixelMemoryOwner),"The length of the input memory is less than the specified image size");
Guard.IsTrue(memoryManager.Memory.Length>=width*height,nameof(byteMemory),"The length of the input memory is less than the specified image size");
235
+
Guard.IsTrue(memoryManager.Memory.Length>=(long)width*height,nameof(byteMemory),"The length of the input memory is less than the specified image size");
0 commit comments