Can anyone tell me how you would go about capturing an image from a web page to the clipboard to place it in another form? Even how to save it would work. The image comes from the cgi-bin, but is always named the same. Thanks.
Printable View
Can anyone tell me how you would go about capturing an image from a web page to the clipboard to place it in another form? Even how to save it would work. The image comes from the cgi-bin, but is always named the same. Thanks.
Well, as the data is being received from the script, record it to the hdd. You now have a copy of the image ...
Could you explain a little further? I am not familiar with the hdd and can't find anything on it. Thanks
hdd = an acronym for Hard Disk Drive ;)
Basically, as the stream of binary data is being received, save it to a file on the hard drive ...
Thanks, I guess I was not thinking of "hdd" in that way and missed it.