C#.net如何在GDI+绘图过程中添加文字?样子就像windows自带的画图软件那样

 我来答
百度网友25ed0b895
2010-11-24 · TA获得超过257个赞
知道答主
回答量:128
采纳率:0%
帮助的人:0
展开全部
//下面这两个文件位置根据你的需求,修改成你机子上的绝对位置。
//程序运行完后,会在newFile位置生成一个新文件。
string oldFile = Environment.CurrentDirectory + "\\test.jpg";
string newFile = Environment.CurrentDirectory + "\\test1.jpg";
Image image = Image.FromFile(oldFile);
Graphics graphic = Graphics.FromImage(image);
graphic.DrawString("绘画时间:2010年11月24日11:31:10", new Font("幼圆", 24f, FontStyle.Regular), new SolidBrush(Color.Black), 100f, 100f);
image.Save(newFile);
image.Dispose();
graphic.Dispose();
血腥蓝
2010-11-24 · TA获得超过406个赞
知道答主
回答量:190
采纳率:0%
帮助的人:246万
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Paint += P;
}

private void P(object sender, EventArgs e)
{
Graphics g = this.CreateGraphics();
g.DrawString("This is the test text.", this.Font, new SolidBrush(Color.Black), new PointF(0, 0));
g.Dispose();
}

private void Form1_Load(object sender, EventArgs e)
{

}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式