From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: making an image catcher app Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: References: X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 23 X-Trace: /Kp2lrAscsVwSl4MREY0oNuaysi0uTLKLkV+aaS4eK/qhN5bDwYip/UHECgdg60ewRP4B2REXDLv!8YxKu4Mgha5J8Egg1lp/DS3QziPheX5blgkwVXEbmAJ3xtEksKg9VN6tCt7OXdx/xQ4yHrtDk+f3!DkwFfw== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Sun, 28 Jan 2001 00:42:19 GMT Distribution: world Date: Sun, 28 Jan 2001 00:42:19 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Sat, 20 Jan 2001 22:22:23 -0500, "Daniel" wrote: >Hello, I wonder if someone could direct me to some site or literature on >doing such an application in c++. I would like to design my own image >catcher (one that would copy an image on my screen and save it). It would be very hard to make a screen grabber with DJGPP because a screen grabber must be a TSR (terminate and stay resident) program. TSRs by their nature are hard to write in real-mode C, let alone protected-mode C. If the application in which you are trying to take a screen shot is free software, consider adding a function to save the screen to a PCX or BMP file. --