Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
1k views

WebBrowser.DrawtoBitmap() generating blank images for few sites consistently

I've been using WebBrowser.DrawtoBitmap() in my asp.net page running in separate STA thread to capture web pages as an image. But I found that I'm getting blank images for few sites consistently. I'm ...
1
vote
1answer
105 views

C# - take picture from inside of a form

OK, I know how DrawToBitmap works or the CopyToScreen methods and all. What I'm looking for is how to take a picture from inside a form (without the form borders, title and maximize box and all) I ...
1
vote
2answers
446 views

Converting WebBrowser.Document To A Bitmap?

Is it possible to draw a WebBrowser.Document to a Bitmap? Basically taking a screenshot of a WebBrowser control (note, this is with a WebBrowser that doesn't live on a form, but just in code). ...
1
vote
2answers
309 views

richTextBox.DrawToBitmap Does Not Draw Containing Text?

If I have a richTextBox and run DrawToBitmap on it, it doesn't draw any of the text inside of the richTextBox. Bitmap b = new Bitmap(rtb.Width, rtb.Height); inputControl.DrawToBitmap(b, new ...
0
votes
2answers
139 views

C# Screenshot of Control is white

My question is related to this one: How to get a screen capture of a .Net control programmatically? I want to take a screenshot of a System.Windows.Forms.Control in C#. I'm using the DrawToBitmap ...