
January 18th, 2013, 11:05 AM
|
|
|
|
There are a couple of different ways. The simplest way utilizes the clipboard. Simply right button click on the image and click copy. You can either use a paste routine to get it where you want it, or put your program into a loop that monitors the clipboard for an image file and load it from the clipboard.
The second way involves searching through the source code for any image file references. The source is available using:
WebBrowser.Document.documentElement.innerHTML
You would still have to identify which image you want, because there could be several. You don't have to worry about it being downloaded again, because if you request it again it is already in cache.
J.A. Coutts
|