重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

asp.net做文字水印

    /// 
    /// 做图片水印(Drawing,IO)
    /// 
    /// 输入图片模板路径
    /// 输入图片路径
    /// 第1行文字
    /// 1-字体
    /// 1-字体大小
    /// 1-x坐标
    /// 1-y坐标
    /// 第2行文字
    /// 2-字体
    /// 2-字体大小
    /// 2-x坐标
    /// 2-y坐标
    private void MyGraphics(string InPath, string OutPath, string oneStr, string oneScript, int oneSize, int oneX, int oneY, string twoStr, string twoScript, int twoSize, int twoX, int twoY)
    {
        string one = oneStr;
        string two = twoStr;
        MemoryStream ms = new MemoryStream();
        Bitmap bmp = new Bitmap(Server.MapPath(InPath));
        Graphics g = Graphics.FromImage(bmp);
        g.DrawString(one, new Font(oneScript, oneSize), Brushes.White, new Point(oneX, oneY));
        g.DrawString(two, new Font(twoScript, twoSize), Brushes.White, new Point(twoX, twoY));
        bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
        System.Drawing.Image i = System.Drawing.Image.FromStream(ms);
        i.Save(OutPath);
        g.Dispose();
        bmp.Dispose();
    }

标题名称:asp.net做文字水印
文章链接:http://cqcxhl.cn/article/jcesjd.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP