将水印图像添​​加到图像

mrb*_*lah 7 c# watermark image

我想在我的所有图像中添加一个小的,渐弱的水印图像.

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

mke*_*eil 1

您可以使用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);
Run Code Online (Sandbox Code Playgroud)

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