Hi, how do I;
Take an image, and add several other images to it (in specific places) then save the image? Is this at all possible?
Thanks for any help :)
Printable View
Hi, how do I;
Take an image, and add several other images to it (in specific places) then save the image? Is this at all possible?
Thanks for any help :)
Use Bitblt and then SavePicture the .Image of the Picturebox.
Quote:
Originally posted by Sastraxi
Use Bitblt and then SavePicture the .Image of the Picturebox.
What is BitBlt?
It's an API function
VB Code:
Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long
If you wanna learn how to use BitBlt, click the Articles button on the top of the page and look for an article on BitBlt ;)
You could also look at this:
http://vbden.tripod.com/articles/invmask.htm
Yeah, there are lots of sites with articles on BitBlt but VB-World is easier to find (you're already there) :D
Yes, but that particular one is mine =)
Oh yes you're right :)
Hehe well at least you have a web page... Mine is almost ready but I never got to finish it :p