These days, I tries to create a hiden WebBrowser control in my program, and Using the IViewObject interface draw to my custom DC.
The result is fine, I got All the c
Try this: http://sourceforge.net/projects/wke/
char* buffer = new char[800*600*4]; IWebVeiw* webView = wkeCreateWebView(""); webView->resize(800, 600); webView->loadURL("www.google.com"); webView->paint(buffer, 0); wkeDestroyWebView(webView);