8 references to Clone
System.Drawing.Common.Tests (7)
mono\System.Drawing\BitmapTests.cs (1)
321using Bitmap bmpNew = bmp.Clone(rect, PixelFormat.Format32bppArgb);
System\Drawing\BitmapTests.cs (6)
371using Bitmap clone = bitmap.Clone(rectangle, targetFormat); 426AssertExtensions.Throws<ArgumentException>(null, () => bitmap.Clone(new Rectangle(0, 0, width, height), bitmap.PixelFormat)); 440Assert.Throws<OutOfMemoryException>(() => bitmap.Clone(new Rectangle(x, y, width, height), bitmap.PixelFormat)); 456Assert.Throws<OutOfMemoryException>(() => bitmap.Clone(new Rectangle(0, 0, 1, 1), format)); 464Assert.Throws<OutOfMemoryException>(() => bitmap.Clone(new Rectangle(0, 0, 1, 1), PixelFormat.Format32bppArgb)); 485AssertExtensions.Throws<ArgumentException>(null, () => bitmap.Clone(new Rectangle(0, 0, 1, 1), PixelFormat.Format32bppArgb));
System.Windows.Forms.UI.IntegrationTests (1)
Infra\ScreenRecordService.cs (1)
325Bitmap croppedSource = frames[i].image.Clone(cropArea, frames[i].image.PixelFormat);