Public Class Form1 Declare Function GetDC Lib "user32.dll" ( _ ByVal hwnd As Int32) As Int32 Declare Function ReleaseDC Lib "user32.dll" ( _ ByVal hwnd As Int32, _ ByVal hdc As Int32) As Int32 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim bmp As Bitmap = My.Resources.image_1 Dim hdc As Int32 = GetDC(0) Dim g As Graphics = Graphics.FromHd..