Hi everyone
As a follow up to this thread
I found that the overlay function was working fine. However, it seems that if I use the overlay function while reading an image from a stream, that it would enlarge the picture before overlaying it.
ie:
overlay = New Bitmap(stream)
g.DrawImage(overlay, 0, 0)
Seems to enlarge the image before overlaying it, whereas this:
overlay = New Bitmap(My.Resources.Pic)
g.DrawImage(overlay, 0, 0)
Seems to overlay the image fine.
What could be the reason for this?