tags:

views:

60

answers:

1

My Current Project Needs to Snapshot a website, the whole website and a thumbnail, with an inputed url.

How can i get it done in C, C++?

+2  A: 

Try libcurl

See also this question

Depending on your O/S you could also launch wget using execv or execv_. boost.process offers cross-platform ways to do this but is not (yet) an official part of boost.

danio