Original Post
Hi everyone, i just finished a very small project in c++ to take screenshots of the entire screen with one simple function. It uses GDI+ lib heres a link to download, http://www.megaupload.com/?d=2ZOYGT4B heres some sample code all you do is specify the path you want to save to, and it will automatically save it as bmp, jpg, jpeg, gif, tiff, png depending on what you specified. hope this will help someone in the future. thanks, leave constructive criticism only
#include <screenshot.hpp>
#pragma comment(lib, "screenshot")
int main(int argc, char** argv)
{
ScrLib::TakeScreenshot("C:\\screenshot.bmp"); //save as bmp
ScrLib::TakeScreenshot("C:\\screenshot.jpg"); //save as jpg
return 0;
}