I've got an application that will develop large pages of content (sometimes 2000x2000 or greater) that is styled with some new css3 properties (box, text shadowing, etc).Now I want to be able to, realistically, capture the contents of that wrapper div and save it as an image. Hours of searching has lead me to many dead ends and tools that don't give me everything I'm looking for:
- html2canvas - nice, but misses basically all styling I need
- canvas2imge - nice saving tool, but need to get everything to a canvas somehow. I've tried overlaying the div contents over the canvas, but that isn't working.
- java-html2image - a working java api that generates an image based on styling and html, but the rendered html isn't always correct and I need it to stay in state.