CopyFromScreen works on 32-bit Win10 computer but not 64-bit

82 Views Asked by At

I developed this code on a Win10 32-bit machine. I put some graphics into a panel, pnlFull. Then I copy the contents of pnlFull and save them as a bmp file on the disk. Debug/Release/AnyComputer/32-bit/64-bit all work fine on the 32-bit machine. Release 32-bit/64-bit/AnyComputer don't work right on the 64-bit machine. On the 64-bit machine, the origin of the copy is somewhere outside pnlFull. Depending on where my form is on the screen, the origin of the copy even lies outside the form. I'd really appreciate any help.

Private Sub Capture_Preset()
    Using tmpImg as New Bitmap(pnlFull.Width, pnlFull.Height)
    Using g as Graphics = Graphics.FromImage(tmpImg)
    g.CopyFromScreen(pnlFull.PointToScreen(New Point(0, 0)), New Point(0, 0), New Size(pnlFull.Width, pnlFull.Height))
    End using
    tmpImg.Save("C:\ProgramData\Paedia\DiablocData\PresetImg(" & PresetNumber & ").bmp", Imaging.ImageFormat.Bmp)
    End using
End Sub
1

There are 1 best solutions below

2
On BEST ANSWER

I think Control.DrawToBitmap() is what you need. It will make the control draw itself onto a bitmap of your choice:

Using tmpImg as New Bitmap(pnlFull.Width, pnlFull.Height)
    pnlFull.DrawToBitmap(tmpImg, New Rectangle(New Point(0, 0), tmpImg.Size))
    tmpImg.Save("C:\ProgramData\Paedia\DiablocData\PresetImg(" & PresetNumber & ").bmp", Imaging.ImageFormat.Bmp)
End Using