Can you show me brief code to do this: User selects bitmap files and enters the coordinates for each one to be put onto one large bitmap with all the selected images. Thanks.
You can save it to disk as a Bmp, Gif, Jpg, Tif, Png...
You create your surface Bitmap just like any other:
Bitmap b=new Bitmap(300, 200);
Graphics g= Graphics.FromImage(b);
Use g to draw the other images.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.