create thumbnail of a website

  • Thread starter Thread starter xkeops
  • Start date Start date
X

xkeops

I need to create a thumbnail (gif, ico or jpeg) of a web page.
Any ideas how to do it in aspnet 2.0 ?
I tried looking around for some code but didn't get much.

Thanks
 
Thanks for answer, I was just wondering if is any code outhere doing
this operation as a web tool. The one you sent is a desktop app.
Thanks again.
 
I dont know of any free ones. Lots of products do it like
http://www.websupergoo.com/abcdrawhtml-1.htm but its at a cost.

If you can't covert it to work from a web app, you have to determine if you
can run it as a windowless (hidden window) executable and either pinvoke it,
or pass it work as a service if possible. The problem you have is that any
kind of screen capture requires a screen to capture from, and you wont have
one in a web app.

Another read, might help you more:
http://forums.asp.net/788760/ShowPost.aspx

Throw some searches for webpage and Gif and see what comes back

Regards

John Timney (MVP)
http://www.johntimney.com
 
Back
Top