I want to create a Windows application with Visual Basic. The application is pretty simple: It lets you choose 2 images, and when you click "Create" the application will create a new .png image from combining the two images' bitmaps. This new file will be created on a specified directory.

How do I do that?

link|improve this question
How would it combine the images? – BlackBear Jan 5 '11 at 0:15
smells like homework. – RedDeckWins Jan 5 '11 at 0:28
Combining images: Put one bitmap over another, then create a new .png image from the result. @RedDeckWins: Smell what you wish, I care little. I don't expect you to understand my curiosity. – Newb Jan 5 '11 at 0:42
Well - you have to specify a way to blend the images. You could XOR the bits, or OR them, or or something else. If you just put one image on top of another, the result is the last image you've written. They're not combined at all. Check out Paint.NET for the options on combining layers, to get a feel for the options here. – Cheeso Jan 5 '11 at 0:43
I know that putting two images over each other won't combine them. I need a way to "copy" the bitmaps of one image onto another, and then create a .png image from this result, which will be saved on the Desktop or something. – Newb Jan 5 '11 at 0:46
show 1 more comment
feedback

1 Answer

I would look into LaVolpe's 32bpp DIB Suite. It provides a plethora of image management routines written in VB, including saving to the PNG format.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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