Does anyone know how to take two/more pics merge them & then save them as .bmp/jpg etc? and is it possible to add a label?
I have managed to paint one picture on top of another but when saving VB (6) only saves the original image!
Printable View
Does anyone know how to take two/more pics merge them & then save them as .bmp/jpg etc? and is it possible to add a label?
I have managed to paint one picture on top of another but when saving VB (6) only saves the original image!
Try using SavePicture with the .Image rather than the .Picture property.
Thanks for the help but I'd tried that I eventually got it working by loading both pictures onto the form itself and using
SavePicture Image, "d:\TEST.BMP"
which some ow saves the whole image of the form into one bmp.