static void Generate2(string text)
{
BarcodeWriter writer = new BarcodeWriter();
//使用ITF 格式,不能被现在常用的支付宝、微信扫出来
//如果想生成可识别的可以使用 CODE_128 格式
//writer.Format = BarcodeFormat.ITF;
writer.Format = BarcodeFormat.CODE_128;
EncodingOptions options = new EncodingOptions()
{
Width = 150,
Height =50,
Margin=2
};
writer.Options = options;
Bitmap map = writer.Write(text);
string filename = @"H:\桌面\截图\generate2.png";
map.Save(filename, ImageFormat.Png);
}
相关文章
- 10-21RFID技术与条码技术的比较
- 10-21解决C#使用Microsoft.Office.Interop.Excel操作Excel后进程一直存在的问题
- 10-21第四节 二维条码与磁卡、IC卡、光卡之比较
- 10-21C# 32位程序,申请大内存,附dome(wpf),亲测可用
- 10-21Internal.Cryptography.CryptoThrowHelper+WindowsCryptographicException 拒绝访问 / 出现了内部错误 c# – 当使用X509Ce
- 10-21Windows下C#命令运行环境简单配置
- 10-21C# Windows Service入门
- 10-21C# 字符串string和内存流MemoryStream及比特数组byte[]之间相互转换
- 10-21c# – 一个大的System.IO.MemoryStream会导致我的应用程序的内存使用量急剧增加吗?
- 10-21C# 代码实现 Windows服务:计时器=>简单实现