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