webpage capture.
-
I want to create bitmaps and save them on the hard disk. May be i can start with 1.bmp, 2.bmp.... so on. Basically on one webpage there is slideshow. i want to find this window of webpage , I want to initiate a timer (same as the webpage interval at which slide changes) , at this timer event I want to capture the slide or web window as bitmap and save it on harddisk at any path. How to find such a window. (internet web page) How to create and save bitmap in the above manner. Any hints? thanks row
-
I want to create bitmaps and save them on the hard disk. May be i can start with 1.bmp, 2.bmp.... so on. Basically on one webpage there is slideshow. i want to find this window of webpage , I want to initiate a timer (same as the webpage interval at which slide changes) , at this timer event I want to capture the slide or web window as bitmap and save it on harddisk at any path. How to find such a window. (internet web page) How to create and save bitmap in the above manner. Any hints? thanks row
One of possible method of capturing parts of HTML content can be based on the screen-capture operation, performed for maximized and on-top browser. In this case you do not need to find the window which contains the HTML content. Just save the image of the screen. You can also capture only the needed region of the screen. For screen-capturing operations, see http://www.codeproject.com/dialog/screencap.asp[^]. For saving bitmap to a file, see http://www.geocities.com/krishnapg/bitmap.html[^] or http://www.codeproject.com/bitmap/drawing2bitmap.asp[^].
-
I want to create bitmaps and save them on the hard disk. May be i can start with 1.bmp, 2.bmp.... so on. Basically on one webpage there is slideshow. i want to find this window of webpage , I want to initiate a timer (same as the webpage interval at which slide changes) , at this timer event I want to capture the slide or web window as bitmap and save it on harddisk at any path. How to find such a window. (internet web page) How to create and save bitmap in the above manner. Any hints? thanks row