温馨提示×

c# drawimage如何绘制文本

c#
小樊
81
2024-11-24 20:56:06
栏目: 编程语言

在C#中,使用System.Drawing命名空间中的Graphics类可以轻松地绘制文本。以下是一个简单的示例,展示了如何使用DrawString方法在图像上绘制文本:

首先,确保已安装System.Drawing命名空间。如果尚未安装,请在项目中添加对System.Drawing的引用。

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;

class Program
{
    static void Main()
    {
        // 创建一个新的图像对象
        Image image = new Bitmap(300, 200);

        // 创建一个Graphics对象,用于在图像上绘制文本
        Graphics graphics = Graphics.FromImage(image);

        // 设置文本要绘制的位置
        Point location = new Point(50, 50);

        // 设置要绘制的文本内容、字体和颜色
        string text = "Hello, World!";
        Font font = new Font("Arial", 24);
        Color color = Color.Red;

        // 在图像上绘制文本
        graphics.DrawString(text, font, color, location);

        // 保存带有文本的图像到文件
        image.Save("output.png");

        // 释放资源
        graphics.Dispose();
        image.Dispose();
    }
}

在这个示例中,我们创建了一个新的300x200像素的图像,并在其上绘制了红色的"Hello, World!"文本。最后,我们将带有文本的图像保存到名为output.png的文件中。

0