ImageList overlays

P

pmiele

Is there a method for creating overlayed images using the .Net (C#) version
of the ImageList class?

I have a set of bitmaps in an ImageList. I would like to create an overlaid
image by combining one of the images over another. This was possible with
the Win32API, but I do not see a method to do a similar thing with the .Net
class. Is there some other class or technique to use?
 
M

Morten Wennevik [C# MVP]

pmiele said:
Is there a method for creating overlayed images using the .Net (C#) version
of the ImageList class?

I have a set of bitmaps in an ImageList. I would like to create an overlaid
image by combining one of the images over another. This was possible with
the Win32API, but I do not see a method to do a similar thing with the .Net
class. Is there some other class or technique to use?

I'm afraid there is no image combining capabilities in .Net Framework, but
you can still use Win32 API. To get you up an running, this article using
BitBlt in C# might help. You might also want to use http://pinvoke.net for
method signatures
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top