>-----Original Message-----
>Hi,
>
>The component that makes HTTP queries, converts web pages
to bitmap on the
>fly and makes thumbnails can be downloaded here:
>
>
http://www.tonec.com/download5.html >
>Dim wss
>Set wss = CreateObject("WebPageSnapshot.Snapshot.1")
>url = "http://www.gotdotnet.com"
>file = "C:\gotdotnet.jpeg"
>width = 0
>height = 0
>
>wss.ShowImage 1
>wss.SetCacheMode 1
>wss.GetWebPage width,height, url
>
>newWidth = wss.GetRealWidth/8
>newHeight = wss.GetRealHeight/8
>
>wss.SetThumbnailSize newWidth, newHeight
>wss.SaveAsJpeg file
>
>wss.Clear
>Set wss = Nothing
>
>
>
>Anton Deve
>Tonec Inc.
>
>"ph-enom" <ph-enom@obmocje51.net>
>> I need to make a component tha would look up an www
>> address and create a image file of that web page.
>>
>> For example:
>> Input:
www.gotdotnet.com >> Output: a printscreen .jpg file of this web page.
>>
>> Has anyone any ideas?
>> Thanks