How can I merge two images into one?
问题 I have a mask image with opacity about 70%, and I have another image that is downloaded from server. How can I redraw them to single image that have the downloaded image lay right below the mask image? I don't want to use canvas because I will use the merge image for panorama background, and canvas wouldn't work. Something like this: using (Graphics grfx = Graphics.FromImage(image)) { grfx.DrawImage(newImage, x, y) } I tried this but no luck: BitmapImage bmp = new BitmapImage(); BitmapImage