彩票走势图

借助Aspose.Drawing 绘图API,在 C# 中向图像添加文本

翻译|行业资讯|编辑:胡涛|2023-10-11 09:40:06.397|阅读 23 次

概述:在这篇博文中,我们将学习如何在 C# 中向图像添加文本,欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

在图像中添加文本是添加上下文、品牌的好方法。它可用于建模、社交媒体帖子、营销材料等。在这篇博文中,我们将学习如何在 C# 中向图像添加文本。我们将逐步指导您如何在JPG或PNG格式的照片或其他图像上书写。让我们开始吧!

Aspose.Drawing 是具有System的跨平台2D绘图引擎,兼容绘图API。绘图库支持将直线、曲线和图形等矢量图形以及各种字体、大小和样式的文本呈现到光栅图像上。支持BMP, PNG, JPEG, GIF,和TIFF等格式。Aspose API 支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

Aspose.Drawing 最新下载

用于向图像添加文本的 C# API

我们将使用Aspose.Drawing for .NET向图像添加文本。它是一个功能强大且多功能的 2D 图形库,允许开发人员在各种应用程序中创建和操作图形。Aspose.Drawing for .NET 支持广泛的图像处理操作,例如裁剪、调整大小、旋转、翻转和水印。对于需要为其 .NET 应用程序提供跨平台、高性能图形库的开发人员来说,它是一个不错的选择。

请下载API的DLL或使用NuGet安装。

PM> Install-Package Aspose.Drawing
在 C# 中向 JPG 图像添加文本

我们可以按照以下步骤向 JPG 图像添加文本:

  1. 使用Bitmap类加载 JPG 图像。
  2. 使用 FromImage() 方法从 Bitmap 对象创建一个新的Graphics对象。
  3. 使用指定的文本颜色初始化SolidBrush类对象。
  4. 使用所需的文本字体系列、样式和大小定义Font类对象。
  5. (可选)初始化一个Rectangle对象。
  6. 之后,使用要显示的文本、Font、Brush 和 Rectangle 类对象作为参数调用DrawString()方法。
  7. 最后,使用Save()方法保存输出图像。

以下代码示例演示如何使用 C# 将文本添加到 JPG 图像。

// Load the image
Bitmap bitmap = new Bitmap("C:\\Files\\Sample_JPG.jpg");
Graphics graphics = Graphics.FromImage(bitmap);

// Define text color
Brush brush = new SolidBrush(Color.DarkBlue);

// Define text font
Font arial = new Font("Arial", 25, FontStyle.Regular);

// Text to display
string text = "Hello, this is a sample text!";

// Define rectangle
Rectangle rectangle = new Rectangle(100, 100, 450, 100);

// Draw text on image
graphics.DrawString(text, arial, brush, rectangle);

// Save the output file
bitmap.Save("C:\\Files\\DrawTextOnJpg.jpg");

在 C# 中向 JPG 图像添加文本

在 C# 中将文本添加到 PNG 图像

同样,我们可以按照前面提到的步骤向 PNG 图像添加文本。但是,我们需要在第一步加载 PNG 图像。

以下代码示例演示如何使用 C# 将文本添加到 PNG 图像。

// Load the image
Bitmap bitmap = new Bitmap("C:\\Files\\Sample_PNG.png");
Graphics graphics = Graphics.FromImage(bitmap);

// Define text color
Brush brush = new SolidBrush(Color.Red);

// Define text font
Font arial = new Font("Arial", 30, FontStyle.Regular);

// Text to display
string text = "Hello, this is a sample text!";

// Define rectangle
Rectangle rectangle = new Rectangle(400, 1500, 1600, 150);

// Specify rectangle border
Pen pen = new Pen(Color.White, 2);

// Draw rectangle
graphics.DrawRectangle(pen, rectangle);

// Draw text on image
graphics.DrawString(text, arial, brush, rectangle);

// Save the output file
bitmap.Save("C:\\Files\\DrawText.png");

在 C# 中向 PNG 图像添加文本

为照片添加标题 - 为照片添加文字

我们还可以按照以下步骤为照片添加标题:

  1. 使用Bitmap类加载照片图像。
  2. 使用加载图像的大小创建一个新位图,并添加标题的矩形大小。
  3. 使用 FromImage() 方法从 Bitmap 对象创建一个新的Graphics对象。
  4. 使用DrawImage()方法在新创建的图像上绘制加载的图像。
  5. 为标题框绘制一个填充矩形。
  6. 使用StringFormat类指定文本字符串格式。
  7. 定义文本、颜色和字体
  8. 之后,使用要显示的文本、Font、Brush 和 Rectangle 类对象作为参数调用DrawString()方法。
  9. 最后,使用Save()方法保存输出图像。

以下代码示例展示了如何使用 C# 为照片添加标题。

// Load the image
Bitmap bitmap = new Bitmap("C:\\Files\\tower.jpg");

var imageHeight = bitmap.Height;
var imageWidth = bitmap.Width;
var textHeight = 50;

// Create a new bitmap with a size of loaded image + rectangle for caption
Bitmap img = new Bitmap(imageWidth, imageHeight + textHeight, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);
Graphics graphics = Graphics.FromImage(img);

// Draw the loaded image on newly created image
graphics.DrawImage(bitmap, 0, 0);

// Draw a rectangle for caption box
Rectangle rectangle = new Rectangle(0, imageHeight, imageWidth, textHeight);
Brush fillColor = new SolidBrush(Color.White);
Pen pen = new Pen(Color.White, 2);
graphics.DrawRectangle(pen, rectangle);
graphics.FillRectangle(fillColor, rectangle);

// Specify text string format
StringFormat stringFormat = new StringFormat();
stringFormat.Alignment = StringAlignment.Center;
stringFormat.LineAlignment = StringAlignment.Center;

// Text color
Brush textColor = new SolidBrush(Color.Black);

// Text font
Font arial = new Font("Arial", 18, FontStyle.Regular);

// Text to display
string text = "Hello, this is a sample text!";

// Draw text
graphics.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
graphics.DrawString(text, arial, textColor, rectangle, stringFormat);

// Save the output
img.Save("C:\\Files\\DrawTextOnPhoto.jpg");

在 C# 中为照片添加标题

在这篇博文中,我们向您展示了如何在 C# 中向图像添加文本。我们介绍了以编程方式在照片和图像上编写文本的基础知识以及一些更高级的技术。此外,我们还推出了一个免费的在线工具,可以随时随地向图像添加文本。如有任何疑问,欢迎联系我们~


欢迎下载|体验更多Aspose产品 

获取更多信息请咨询 或 加入Aspose技术交流群(761297826

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
相关产品
Aspose.Cells for .NET

专业的电子表格控件,无需MS Excel也可满足一切Excel表格功能。

Aspose.Words for .NET

无需Microsoft Word也可在任何平台上满足Word文档的一切操作需求。

Aspose.Chart

Aspose.Chart 是一款针对.Net应用程序开发的经济和金融图表控件。 它可以使你的.Net应用程序制作出21种不同类型的图表,其中包括有:面积图,条形图,泡沫图,等高线图,烛台图表,方块图,曲线图,曲面图,圆环图,甘特图,HighLowClose,线条图,OpenHighLowClose,柏拉图,饼状图,菱形图,点图,雷达图,散点图,茎叶图,地面天气图,以及上述类型图表的许多变种图。Aspose.Chart 同样支持许多强大的功能包括:3D 绘图,外筐边界,抗锯齿功能,透明度,倾斜度,自定义绘图以及图像合并等功能。提供Aspose.Chart下载、Aspose.Chart授权、Aspose.Chart培训、Aspose.Chart购买、Aspose.Chart相关咨询服务。

title
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP