码迷,mamicode.com
首页 > Windows程序 > 详细

在图像上增加文字 C#

时间:2018-10-03 00:32:58      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:for   inpu   png   NPU   span   file   wstring   data-   phi   

using (Image i = Image.FromFile(inputPath))
    {
    using (Graphics g = Graphics.FromImage(i))
        {
        g.DrawString("John", Font, Brushes.Black, new PointF(fX, fY1));
        g.DrawString("2018-10-01", Font, Brushes.Black, new PointF(fX, fY2));
        }
    i.Save(outputPath, ImageFormat.Png);
    }

在图像上增加文字 C#

标签:for   inpu   png   NPU   span   file   wstring   data-   phi   

原文地址:https://www.cnblogs.com/zeroone/p/9738107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!