0

Is there a way to take a screenshot of entire webpage using VC++ Win32 application.

  • Add more details -- is the web page inside the browser or web control or downloaded programmatically? If browser or web control is involved, what is it? – seva titov Apr 16 '14 at 16:10
  • @Seva, Yes, it is the web page inside the browser (Internet Explorer 9). And one more thing I have created a toolbar with a button. On toolbar button click I can get current window's screenshot. But no clue about entire web screen. – user3541820 Apr 18 '14 at 14:40

1 Answers1

1

You will have to communicate directly to the rendering engine. There are several projects that already do this on the web, using WebKit. Just google for "webkit page snapshot" and you will see several hits, including CutyCapt, WebKit2png, etc.

I did not try any of those, but sample screenshots they show on their project pages look like what you are asking for.

seva titov
  • 11,040
  • 2
  • 30
  • 52