Attached is a simple sample project it goes to a web page and saves it as a image, Ive not got this bit working, however i need to save the entire page, NOT just the top part of it.....
Please take a look and come back to me....
Thanks
Carl
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
What you are asking for a not realisitc. You would have to write your own parser engine for html and manually translate each html element into an image. Meaning you are writing an entire web browser. This would take you months if not a couple years to write.
surly mshtml is storing the document in memory, cant that memory be invoked and then used to create an image ?
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
No. It is not what you think. A Web browser goes line by line of an html document and translates that into what you see. It isnt creating an image of any type. Its just formatted text. There is no 'image' of the web page you can pull out of memory. Best you can do without parsing the html yourself is get a screenshot of what is in the Device context, and that will only capture what is visible.
oh bummer, i was hoping there would be a image or something in memory, DAM DAM DAM.
ok what about doing something like this...
Capture part one of the DC, then automaticaly move the page take another shot (join it to image 1) then if there more page repeat this until its finished. adding each snapshot to the first one, therefor creating the bigger picture....
theres a prog called snagit and that allows webpage capturing simply buy doing a left mouse click at top of the page and then scroll down press right click to show the end point,.....
How have they done that....
If this is too much how about some control or pdf creator to make a single image from the webpage
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
"Capture part one of the DC, then automaticaly move the page take another shot (join it to image 1) then if there more page repeat this until its finished. adding each snapshot to the first one, therefor creating the bigger picture...."
That may be possible albeit clunky. Im not sure how to go about that though.
well you got any idea's to how i can capture a web page as a single file ?
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message
ok in microsoft IE ive got options when saving a webpage
one of them is save complete webpage as mht.
If i can do this in code, then problem is sloved.......
I am curretly building a defect management system for software and web developers,
If you wana try it out (beta test) and keep it for free just send me a message