public static void DrawCursorToImage(Image img, Point offset)
 {
     using (MyCursor cursor = NativeMethods.CaptureCursor())
     {
         DrawCursorToImage(cursor, img, offset);
     }
 }