Is it possible to take the screen capture of the desktop of a remote machine using C++? We were able to take the screen capture of the current machine using window APIs and save to local as bitmap. If the knew the IP address of a remote machine, is this possible ?
[Edit]
Actually ours is a server-client model where the C++ back-end code will be running in the server. The clients will be accessing the server through REST calls and viewing the data. We had a requirement to take the capture of the client screen and save as image. We are facing some technical issues while saving the html content as image. Hence we thought of any other methods to capture the screen. Since C++ has the API to capture the current screen, we thought whether there is any way to capture the client screen from Server side.