To je specifický algoritmus a žádné specifické algoritmy ve Frameworku nejsou. Nicméně kopii obrazovky lze udělat následujícím kódem:
With Screen.PrimaryScreen.Bounds
Dim newBitmap = New Bitmap(.Width, .Height, Imaging.PixelFormat.Format32bppArgb)
Dim screenGraphics = Graphics.FromImage(newBitmap)
screenGraphics.CopyFromScreen(.X, .Y, 0, 0, New Size(.Width, .Height))
End With
|