从2个不同的图像C#创建新图像

时间:2018-01-30 14:51:49

标签: c# image graphics bitmap

我正在使用一个功能,我有两个图像,其中一个是背景,另一个是QR码,我需要使用背景(图像1)和QR图像创建一个新图像,但我需要定义QRCode图像的位置。 像波纹管图像, enter image description here

最好的问候

1 个答案:

答案 0 :(得分:2)

using (Image background = Image.FromFile("background.jpg"))
using (Image qrCode = Image.FromFile("qrCode.jpg"))
using (Graphics graphics = Graphics.FromImage(background))
{
    int x = 100;
    int y = 100;
    graphics.DrawImage(qrCode, x, y);
    background.Save("result.jpg", ImageFormat.Jpeg);
}