Create "layers" like Photoshop/Paint shop pro **resolved**
OK. I got a webcam program that I'm writing. I got everything I need including the camera capture, and the upload portion. I just want to do one thing.
I want to add a watermark based on an image and a position that the user specifies. I have the underlying image on a picturebox and I want to put the watermark image overtop of it like another layer, then add it to the picture property.
Anybody have any good methods of doing this?
Been trying BitBlt, no success
VB Code:
hdcWatermark = LoadImage(0, strPath, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE)
lResult = BitBlt(frmCapture.Picture1.hdc, 0, 0, _
96 * 15, _
11 * 15, _
hdcWatermark, 0, 0, vbSrcCopy)
No effect