• Barcode Professional for ASP.NET使用教程:透明旋转条码图像的创建


    需求

    • Neodynamic Barcode Professional for ASP.NET 2.0以上
    • Microsoft .NET Framework(任何版本)
    • Microsoft Visual Studio .NET(任何版本)

    我们可以通过设置Barcode Professional里面BackColor属性进行透明处理。即是System.Drawing.Color.Transparent.

    通过设置 Rotate 属性进行条码图像的旋转处理,可将其设置一定的值,即可旋转一定的角度。

    下面将通过简单的示例,来展示这两项功能。

    步骤:

    1. 打开.NET开发工具如,Visual Studio .NET.创建新的ASP.NET应用程序。
    2. 将Barcode Professional控件和DropDownList控件加入到WebForm 设计界面。
    3. 创建DIV包,并附上条码控件,将DIV背景色设置为浅绿色,并将Barcode Professional的BackColor 属性设置为透明。
    4. 选择DropDownList控件,添加指示旋转角度项,并将AutoPostBack属性设置为TRUE。
    5. 写上SelectedIndexChanged事件过程代码来设置旋转属性。

    VB

    Select Case DropDownList1.SelectedValue
    Case "0"
    BarcodeProfessional1.Rotate = Rotate.None
    Case "90"
    BarcodeProfessional1.Rotate = Rotate.Degree90
    Case "180"
    BarcodeProfessional1.Rotate = Rotate.Degree180
    Case "270"
    BarcodeProfessional1.Rotate = Rotate.Degree270
    End Select

    C#

    switch(DropDownList1.SelectedValue)
    {
    case "0":
    BarcodeProfessional1.Rotate = Rotate.None;
    break;
    case "90":
    BarcodeProfessional1.Rotate = Rotate.Degree90;
    break;
    case "180":
    BarcodeProfessional1.Rotate = Rotate.Degree180;
    break;
    case "270":
    BarcodeProfessional1.Rotate = Rotate.Degree270;
    break;
    }

    完成!创建ASP.NET Web应用程序运行。

    Barcode
    Barcode

    本文译自Barcode

    详情evget.com/product/818

  • 相关阅读:
    net应用程序池自动关闭的解决方法
    asp.net 多个txt压缩导出下载
    asp.net 对象转XML,XML转对象
    asp.net Cache缓存的用法
    oracle 增加大字段项
    asp.net简繁体转换
    asp.net 根据连接地址保存文件,图片
    SpringSide从系统全局里面取值
    SpringSide dml操作
    一张表里面形成的树,固定初始化数据
  • 原文地址:https://www.cnblogs.com/jp294936239/p/5001174.html
Copyright © 2020-2023  润新知