using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Printing; using System.Linq; using System.Text; using System.Windows.Forms; using ZXing; using ZXing.Common; using ZXing.QrCode; using System.IO; namespace Jbarcode { public partial class Form1 : Form { PrintDocument pd = new PrintDocument(); Bitmap printImage = null; public Form1() { InitializeComponent(); pd.PrintPage += new PrintPageEventHandler(this.pd_PrintPage); } private void button1_Click(object sender, EventArgs e) { //this.pictureBox1.BackColor = Color.Red; //ITF偶数码 MSI长度随意 EncodingOptions options = new EncodingOptions { Width = 400, Height = 100
C#生成条形码打印
最新推荐文章于 2024-09-22 13:18:22 发布
本文详细介绍了如何利用C#编程语言生成条形码,并实现打印功能。通过结合第三方库或自定义算法,可以创建不同类型的条形码,如EAN-13、UPC-A等。此外,还探讨了如何将条形码图像整合到文档中,并使用打印机进行有效输出。
摘要由CSDN通过智能技术生成