成都创新互联网站制作重庆分公司

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://cxhlcq.com/article/jcesjd.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部