我有以下任务。拍摄基本图像并在其上覆盖另一个图像。基本图像是8b png以及叠加。 这是基础(左)和叠加(右)图像。
这是一个结果以及它必须如何看待。
左边的图片是一张图片在另一张图片上方(html和定位)的截图,第二张图片是程序化合并的结果。
正如您在屏幕截图中看到的那样,文本的边框更暗。这里还有图像的大小
结果图像的大小也很大
这是我用来合并这些图片的代码
/*...*/
public Stream Concatinate(Stream baseStream, params Stream[] overlayStreams) {
var @base = Image.FromStream(baseStream);
var canvas = new Bitmap(@base.Width, @base.Height);
using (var g = canvas.ToGraphics()) {
g.DrawImage(@base, 0, 0);
foreach (var item in overlayStreams) {
using (var overlayImage = Image.FromStream(item)) {
try {
Overlay(@base as Bitmap, overlayImage as Bitmap, g);
} catch {
}
}
}
}
var ms = new MemoryStream();
canvas.Save(ms, ImageFormat.Png);
canvas.Dispose();
@base.Dispose();
return ms;
}
/*...*/
/*Tograpics extension*/
public static Graphics ToGraphics(this Image image,
CompositingQuality compositingQuality = CompositingQuality.HighQuality,
SmoothingMode smoothingMode = SmoothingMode.HighQuality,
InterpolationMode interpolationMode = InterpolationMode.HighQualityBicubic) {
var g = Graphics.FromImage(image);
g.CompositingQuality = compositingQuality;
g.SmoothingMode = smoothingMode;
g.InterpolationMode = interpolationMode;
return g;
}
private void Overlay(Bitmap source, Bitmap overlay, Graphics g) {
if (source.Width != overlay.Width || source.Height != overlay.Height)
throw new Exception("Source and overlay dimensions do not match");
var area = new Rectangle(0, 0, source.Width, source.Height);
g.DrawImage(overlay, area, area, GraphicsUnit.Pixel);
}
我的问题是
System.Drawing
是否适用于此工具或是否有更好的工具来处理.NET的png?答案 0 :(得分:3)
您的问题的答案是: 1)只需使用参数CompositingQuality.Default调用方法ToGraphics,而不是像示例中那样使用默认参数值:
using (var g = canvas.ToGraphics(compositingQuality: CompositingQuality.Default))
问题在于CompositingQuality.HighQuality是它将两个图像组合成一个,但你想要制作叠加,而不是制作两个图像的组合。
2)尺寸与您指定的尺寸相似且无法更改,这是由图像格式决定的。
3)如果您使用c#进行桌面编程,那么据我所知,System.Drawing是最佳选择。