ImageList overlays

  • Thread starter Thread starter pmiele
  • Start date Start date
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?
 
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
 
Back
Top