在c#中合并两个图像

时间:2011-01-10 04:49:08

标签: c# image-processing image-manipulation

我想通过组合两个图像来创建图像,以便使用c#代码将第一个图像设置为第二个图像的边框。

2 个答案:

答案 0 :(得分:2)

请在combining images in C#

上查看这些文章

只需将其更改为使用两个图像,然后操纵偏移,使其与另一个相邻。

答案 1 :(得分:0)

免责声明:我在Atalasoft工作

我们的DotImage Photo SDK(免费)可以做到这一点。

加载图片

AtalaImage img = new AtalaImage("file.jpg");

加载边框(假设它在中间有透明,并且大小相同)

OverlayCommand cmd = new OverlayCommand("border.png", new Point(0,0));
AtalaImage borderedImg = cmd.Apply(img).Image;

保存最终图像

borderedImg.Save("final.jpg", new JpegEncoder(), null);