在Windows 8应用程序中将Encode字符串值转换为PDF-417条形码?

时间:2013-06-21 10:35:17

标签: c# windows-8 windows-runtime barcode zxing

我正在尝试使用Windows 8应用程序中的ZXing https://zxingnet.codeplex.com/将字符串值转换为PDF-417条形码格式。目前我只能在代码下面编写如何将BitMatrix放入图像源。

        int width = 115;
        int Height = 65;

        PDF417Writer writer = new PDF417Writer();
        BitMatrix bitIMGNew = writer.encode(value, BarcodeFormat.PDF_417, width, Height);
        WriteableBitmap imgBitmap = bitIMGNew.ToBitmap();

我怎样才能做到这一点?或者我是否需要使用任何其他DLL?

1 个答案:

答案 0 :(得分:0)

要使用ZXing.Net从某些内容生成PDF417代码,您应该尝试以下代码段:

var writer = new BarcodeWriter
{
   Format = BarcodeFormat.PDF_417,
   Options = new EncodingOptions {Width = 115, Height = 65}
};
var imgBitmap = writer.Write(value);

imgBitmap是WriteableBitmap的一个实例,在我看来它是你的图像源。