Wanting to create a system that allows me to take full screen shots, I looked at some threads on SO and other sites and have tried everything they are doing, however for some reason, I cannot take a screenshot any larger than 1536 x 864. Even using my region selector tool. Heres the code I am using to take the full screen screenshot:
Dim ClipicScreenshot As Bitmap
Dim Graphic As Graphics
screenshot = New Bitmap(My.Computer.Screen.Primary.Bounds.Width, My.Computer.Screen.Primary.Bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
Graphic = Graphics.FromImage(screenshot)
Graphic.CopyFromScreen(0, 0, 0, 0, My.Computer.Screen.Primary.Bounds, CopyPixelOperation.SourceCopy)
My.Computer.Clipboard.SetImage(ClipicScreenshot)
I have tried specifying the bounds of my screen (1920 x 1080) but still i only get a max image size of 1536 x 864.
Any help would be appreciated. Thanks :)