问题描述
HI,
我已尝试在asp.net网络应用程序中打印条形码贴纸。但到现在为止我没有得到一个输出
我在2D条形码中尝试过datamatrix类型。但我不知道如何打印条形码贴纸
二维条码中的
我试过了
BarcodeLib.Barcode.DataMatrix datamatrix = new BarcodeLib.Barcode.DataMatrix();
datamatrix.Data = 1dfefg%^ 7fdsg56566\" ;
datamatrix.BackgroundColor = System.Drawing.Color.White;
datamatrix.ModuleSize = 6;
datamatrix.RightMargin = 6;
datamatrix.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg;
datamatrix.drawBarcode(RollnoBar);
请告知你的建议
I Have Tried print barcode sticker in asp.net web application.but till now i didn''t get a otput
I Have tried datamatrix type in 2D barcode .but i don''t know about how to print barcode sticker
in 2D barcode
I have tried
BarcodeLib.Barcode.DataMatrix datamatrix = new BarcodeLib.Barcode.DataMatrix();
datamatrix.Data = "1dfefg%^7fdsg56566";
datamatrix.BackgroundColor = System.Drawing.Color.White;
datamatrix.ModuleSize = 6;
datamatrix.RightMargin = 6;
datamatrix.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg;
datamatrix.drawBarcode(RollnoBar);
pls telll your suggestion
推荐答案
这篇关于如何在c#.net web应用程序中打印条形码标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!