gpt4 book ai didi

c# - 将水印图像添​​加到图像

转载 作者:太空狗 更新时间:2023-10-29 20:40:47 25 4
gpt4 key购买 nike

我想在我的所有图片中添加一个小的淡出水印图像。

有没有办法在 C# 中做到这一点?

最佳答案

您可以使用 System.Drawing 组合图像

//1. create a bitmap (create a empty one or from file)
Bitmap bmpPic = new Bitmap(imgWidth,imgHeight);

//2. pass that bitmap into Graphics
using (Graphics g = Graphics.FromImage(bmpPic))
{
//manipulate the image
}

//3. save the bitmap back to a filestream
bmpPic.Save(imgFileStream,ImageFormat.Png);

只需确保处置所有用作 System.Drawing 使用非托管 GDI+ 资源的资源

关于c# - 将水印图像添​​加到图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1949526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com