彩票走势图

Barcode Professional SDK for .NET使用教程(二):打印条形码图像

原创|使用教程|编辑:龚雪|2016-03-08 17:14:58.000|阅读 702 次

概述:本次教程主要介绍了在Barcode Professional SDK for .NET中运用PrintDocument类打印各类型条形码图像的方法。

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

相关链接:

正如您可能知道的那样,大多数.NET框架中的打印工作是由System.Drawing.Printing 命名空间下的PrintDocument类执行的。Print-Document类被用来设置描述打印内容的字符串、图像等的属性。main函数PrintDocument类的特点是打印开始文档的打印进程。在Print方法被调用后,PrintDocument类将为每个被打印的页码添加一个PrintPage事件。这就是您应该将打印逻辑添加到该事件的事件处理程序的地方。

如果您的应用程序需要条形码功能起作用,那么打印包含条形码图像的文档也是必须的。

Barcode Professional控制一个名为DrawOnCanvas的函数方法,该函数方法可以使你在任何GDI+ Graphics对象上绘制条形码图像。PrintDocument's PrintPage事件展示了一个绘制页面内容的Graphics对象,为了打印条形码图像Graphics对象必须通过DrawOnCanvas方法。

最新版Barcode Professional SDK for .NET下载


  • 如何使用PrintDocument类打印条形码图像

这是最简单的条形码打印方案。例如,假设您已经为PrintDocument's PrintPage事件设置了一个事件处理程序,在下列的代码中,文档/页面中处理器程序将会创建一个Barcode Professional对象并打印在指定位置生成的条形码图像。

Private Sub printDocumentObject_PrintPage(sender As Object, e As  System.Drawing.Printing.PrintPageEventArgs)
    'Create a Barcode Professional object
    Dim bcp As New BarcodeProfessional()
    'Barcode settings
    bcp.Symbology = Symbology.Code39
    bcp.Code = "123456789"
    '...
    'Print the barcode at x=1in, y=1in using DrawOnCanvas method
    bcp.DrawOnCanvas(e.Graphics, New PointF(1F, 1F))
End Sub	    	
private void printDocumentObject_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
    //Create a Barcode Professional object
    BarcodeProfessional bcp = new BarcodeProfessional();
    //Barcode settings
    bcp.Symbology = Symbology.Code39;
    bcp.Code = "123456789";
    //...
    //Print the barcode at x=1in, y=1in using DrawOnCanvas method
    bcp.DrawOnCanvas(e.Graphics, new PointF(1f, 1f));
}			    

  • 如何使用PrintDocument类打印缩放的条形码图像

DrawOnCanvas方法的一个版本使你可以通过特定的scale参数来打印缩放的条形码图像。例如,如果你想把条形码图像缩放至当前大小的50%,那么scale参数必须指定为0.5;如果你想把条形码图像扩大至当前大小的200%,那么scale参数必须指定为2。

假设您已经为PrintDocument's PrintPage事件设置了一个事件处理程序,在下列的代码中,文档/页码中的处理器程序将会创建一个Barcode Professional对象并打印在指定位置生成的缩放比例为50%的条形码图像。

Private Sub printDocumentObject_PrintPage(sender As Object, e As  System.Drawing.Printing.PrintPageEventArgs)
    'Create a Barcode Professional object
    Dim bcp As New BarcodeProfessional()
    'Barcode settings
    bcp.Symbology = Symbology.Code39
    bcp.Code = "123456789"
    '...
    'Print the barcode at x=2in, y=3in and scaled at 50% using DrawOnCanvas method
    bcp.DrawOnCanvas(e.Graphics, New PointF(2F, 3F), 0.5F)
End Sub	 
private void printDocumentObject_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
    //Create a Barcode Professional object
    BarcodeProfessional bcp = new BarcodeProfessional();
    //Barcode settings
    bcp.Symbology = Symbology.Code39;
    bcp.Code = "123456789";
    //...
    //Print the barcode at x=2in, y=3in and scaled at 50% using DrawOnCanvas method
    bcp.DrawOnCanvas(e.Graphics, new PointF(2f, 3f), 0.5f);
}		

  • 如何使用PrintDocument类打印条形码部分区域的图像

打印条形码的部分区域是很常见的事,例如,要打印的条形码图像被指定大小为1.5英寸x1英寸,DrawOnCanvas方法使你可以用barsAreaInInches参数指定目标区域来实现,请记住关于目标区域的以下几点:

  • 目标区域的尺寸(长度和宽度)是由BarcodeProfessional对象包含的BarcodeUnit属性指定的。默认情况下为英寸。
  • 目标区域包含:
    • Width:包括条形码条宽+左右的静态区域(QuietZoneWidth属性)
    • Height:只包括条形码条款的高度

假设您已经为PrintDocument's PrintPage事件设置了一个事件处理程序,在下列的代码中,文档/页码中的处理器程序将会创建一个Barcode Professional对象并打印生成的尺寸大小为2英寸x1英寸的条形码图像。

Private Sub printDocumentObject_PrintPage(sender As Object, e As  System.Drawing.Printing.PrintPageEventArgs)
    'Create a Barcode Professional object
    Dim bcp As New BarcodeProfessional()
    'Barcode settings
    bcp.Symbology = Symbology.Code39
    bcp.Code = "123456789"
    '...
    'Print the barcode to fit an area of size 2x1in using DrawOnCanvas method

    bcp.DrawOnCanvas(e.Graphics, New PointF(0,0), New SizeF(2F,1F))
End Sub	
private void printDocumentObject_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
    //Create a Barcode Professional object
    BarcodeProfessional bcp = new BarcodeProfessional();
    //Barcode settings
    bcp.Symbology = Symbology.Code39;
    bcp.Code = "123456789";
    //...
    //Print the barcode to fit an area of size 2x1in using DrawOnCanvas method
    bcp.DrawOnCanvas(e.Graphics, New PointF(0,0), New SizeF(2f,1f));
}	    

 


标签:条形码条码生成条码打印

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


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP