Question Grab image from webbrowser control

Zexor

Well-known member
Joined
Nov 28, 2008
Messages
520
Programming Experience
3-5
Can you grab an image that is loaded into webbrowser control? i dont mean getting the url and loading it in a picturebox. I mean getting the image from the webbrowser control and put it in a picturebox.image

That would be the htmlelement? can u change it to image?
 
Last edited:
If you copy the image from the webbrowser in the sence of right clicking on an image and click copy, you can all ways get the image from your clipboard like this:

PictureBox1.Image = Clipboard.GetImage


To get pictures directly from the webbrowser, take a look at this thread.
 
Back
Top