Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I receive multiple (small) images stored in HBitmaps (handles to GDI bitmaps) and I want to draw them together in a large C# System.Drawing.Bitmap object. For performance reasons, I don't want to use Image.FromHBitmap to first convert the HBitmaps, as the method makes a copy of the GDI bitmap.

Is there a way to do this? Graphics.DrawImage seems to require System.Drawing Image/Bitmap objects.

I'm using C#/Windows Forms/System.Drawing.

share|improve this question

1 Answer

up vote 0 down vote accepted

The only other way I can think of is to use the old GDI APIs. In other words, create two device contexts, SelectObject the bitmaps into them and BitBlt on to the other.

share|improve this answer
Do you have some sample source code for this? Thanks. – TechAurelian Dec 16 '10 at 12:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.