Dim MyBitmap As New Bitmap(MyPicturebox.Image)Dim MyColor As ColorMyColor = MyBitmap.GetPixel(X of your pixel, Y of your pixel) Dim b As BitmapDim cr, cg, cb As Integerb.SetPixel(ix, iy, Color.FromArgb(cr, cg, cb)) image overlay Imports System.Drawing Dim OverlayImage As New Bitmap("Some Path", True)Dim BackImage As New Bitmap("Some Path", True)g As Graphics = Graphics.FromImage(BackImage)g.Draw..