I'm building a VCL Forms Application in RAD Studio using C++. On the Form, I have a TImage
object named Image2
. I can add a picture to it like this:
Image2->Canvas->Draw(0, 0, Image1->Picture->Graphic);
Now, I want to add another picture on top of it (not replacing the present picture, but adding to it). How do I do this?
Also, is there a way to do this and be able to use the mouse to move around and add the second picture wherever I want it?
The main thing - I want to add the new picture to the existing, not simply replace it.