提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|行业资讯|编辑:胡涛|2024-02-18 10:11:10.997|阅读 14 次
概述:在这篇博文中,我们将学习如何使用 C# 以编程方式生成基于文本的 QR 码。我们将提供分步指南和代码片段,帮助您使用 C# 开发自己的文本到 QR 码生成器。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
二维码用于在较小的空间内存储大量数据。它们易于使用,可以通过智能手机或其他设备扫描来打开网站、观看视频或访问其他编码信息。在这篇博文中,我们将学习如何使用 C# 以编程方式生成基于文本的 QR 码。我们将提供分步指南和代码片段,帮助您使用 C# 开发自己的文本到 QR 码生成器。
Aspose.BarCode for .NET 是一个功能强大的API,可以从任意角度生成和识别多种图像类型的一维和二维条形码。开发人员可以轻松添加条形码生成和识别功能,以及在.NET应用程序中将生成的条形码导出为高质量的图像格式。 Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
为了将任何文本转换为 QR 码,我们将使用Aspose.BarCode for .NET API。它允许在 .NET 应用程序中生成、扫描和读取条形码和 QR 码。该 API 允许开发人员轻松地将生成的条形码或 QR 码保存为各种图像格式,例如PNG、JPEG和TIFF。它支持 60 多种条形码符号,例如 QR 码、Code 128、Code 39、EAN、UPC 等。
请下载API的DLL或使用以下NuGet命令安装它:
PM> Install-Package Aspose.BarCode
我们可以按照以下步骤轻松地从任何提供的文本生成二维码:
以下代码示例展示了如何使用 C# 将文本转换为二维码。
// This code example demonstartes how to generate a QR code from Text. // Initialize the BarcodeGenerator // Specify Encode type as QR var generator = new BarcodeGenerator(EncodeTypes.QR); // Specify code text to encode generator.CodeText = "Your text goes here!"; // Specify the size of the image generator.Parameters.Barcode.XDimension.Pixels = 8; generator.Parameters.Resolution = 500; // Save the generated QR code generator.Save("C:\\Files\\Text_QR_Code.jpg");
我们可以按照前面提到的步骤自定义从文本生成的二维码的外观。然而,我们需要设置一些额外的属性来自定义背景颜色、边框颜色、图像高度等。
以下代码示例展示了如何在 C# 中自定义文本以生成 QR 码。
// This code example demonstartes how to generate a QR code from Text. // Initialize the BarcodeGenerator // Specify Encode type as QR var generator = new BarcodeGenerator(EncodeTypes.QR); // Specify code text to encode generator.CodeText = "Your text goes here!"; // Specify the size of the image generator.Parameters.Barcode.XDimension.Pixels = 8; // Set background color generator.Parameters.BackColor = Color.Red; // Set QR color generator.Parameters.Barcode.BarColor = Color.Blue; // Set image resolution generator.Parameters.Resolution = 300; // Set border generator.Parameters.Border.DashStyle = BorderDashStyle.Solid; generator.Parameters.Border.Color = Color.Yellow; generator.Parameters.Border.Visible = true; generator.Parameters.Border.Width.Point = 4; // Save the generated QR code generator.Save("C:\\Files\\Customized_QR_Code.jpg");
我们还可以将人类可读的文本添加到生成的二维码图像中。它可以是主文本标签、顶部标题或底部标题。我们可以按照前面提到的步骤添加代码文本和下面的标题。但是,我们只需要设置CodeTextParameters 和 CaptionBelow 属性,如下所示:
// This code example demonstartes how to generate a QR code from Text. // Initialize the BarcodeGenerator // Specify Encode type as QR var generator = new BarcodeGenerator(EncodeTypes.QR); // Specify code text to encode generator.CodeText = "Your text goes here!"; // Specify the size of the image generator.Parameters.Barcode.XDimension.Pixels = 8; // Set background color generator.Parameters.BackColor = Color.White; // Set QR color generator.Parameters.Barcode.BarColor = Color.Blue; // Set image resolution generator.Parameters.Resolution = 300; // Set border generator.Parameters.Border.DashStyle = BorderDashStyle.Solid; generator.Parameters.Border.Color = Color.Red; generator.Parameters.Border.Visible = true; generator.Parameters.Border.Width.Point = 4; // Show the code text above the QR code generator.Parameters.Barcode.CodeTextParameters.TwoDDisplayText = "Aspose.BarCode"; generator.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.Above; // Set the caption below the QR code generator.Parameters.Barcode.CodeTextParameters.TwoDDisplayText = "HELLO"; generator.Parameters.CaptionBelow.Text = "ASPOSE"; generator.Parameters.CaptionBelow.Visible = true; generator.Parameters.CaptionBelow.Font.Style = FontStyle.Bold; generator.Parameters.CaptionBelow.Font.Size.Pixels = 18; generator.Parameters.CaptionBelow.Font.FamilyName = "Verdana"; // Save the generated QR code generator.Save("C:\\Files\\QR_Code_with_text.jpg");
您可以使用使用此 API 开发的在线,从在线输入的任何文本免费生成 QR 代码。
在这篇博文中,我们学习了如何使用 C# 开发文本到 QR 码生成器。我们还了解了如何自定义 QR 码并向生成的图像添加标题。通过利用 Aspose.BarCode for .NET,您可以创建令人惊叹的 QR 码,可用于网站链接、联系信息等。,望能帮到您,除此之外,你有其他方面的需求,也欢迎和我们互动,或这下体验~
欢迎下载|体验更多Aspose产品
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
The Enigma Protector 是一款专门设计用来为应用程序添加高强度保护的强大工具。它旨在防止非法复制、反编译和修改代码等操作,以保护应用程序的安全性和完整性。
我们非常高兴地向大家宣布,FastReport Online Designer 2025.1 版本正式发布!这一全新的版本不仅进一步优化了用户体验,还引入了众多实用的新功能与改进,帮助您在浏览器中轻松设计模板和报表。欢迎查阅~
本文将为大家深入介绍QtitanChart组件,看看它是如何实现高效、灵活的Qt数据可视化解决方案,欢迎下载最新版组件体验!
在工业自动化和数据交换的领域中,提到OPC(OLE for Process Control),很多人可能会感到陌生,甚至不太理解它到底是什么。但是,OPC在现代工控系统中有着极为重要的作用。为了让大家更好地理解OPC,今天我们就从零开始,一步步讲解OPC的定义、作用和应用。
可在任何平台上生成和识别条形码。
Aspose.Barcode for Reporting ServicesAspose.BarCode for Reporting Services 是最全面的MS SQL Server 2000 、2005和2008 Reporting Services 条形码显示解决方案。
Aspose.BarCode for SharePointAspose.BarCode for SharePoint提供的功能:让您在Microsoft SharePoint列表中插入条形码。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢