在图片框中生成QRcode

时间:2014-12-08 12:49:50

标签: c# winforms picturebox qr-code

我正在尝试在Windows窗体上生成QR代码并尝试将其设置为图像框。 我从this来源获取了以下代码,并从here获得了相关文件。

            private void GenerateQrcode(string _data, string _filename)
    {
        QRCode qrcode = new QRCode();
        qrcode.Data = _data;
        qrcode.DataMode = QRCodeDataMode.Byte;
        qrcode.UOM = UnitOfMeasure.PIXEL;
        qrcode.X = 3;
        qrcode.LeftMargin = 0;
        qrcode.RightMargin = 0;
        qrcode.TopMargin = 0;
        qrcode.BottomMargin = 0;
        qrcode.Resolution = 72;
        qrcode.Rotate = Rotate.Rotate0;
        qrcode.ImageFormat = ImageFormat.Gif;
        qrcode.drawBarcode(_filename);
    }

我想知道这个文件的创建地点。我必须作为文件名传递什么,只是作为名称的字符串或正在创建文件的目录的路径。 如何在图片框中显示创建的文件?像这样?

       pictureBox1.Image = image;

1 个答案:

答案 0 :(得分:1)

http://www.onbarcode.com/csharp/qr-code-generator.html上的示例说:

// Generate QR-Code and encode barcode to gif format
qrcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
qrcode.drawBarcode("C:\\qrcode.gif"); 
/*
You can also call other drawing methods to generate barcodes          
public void drawBarcode(Graphics graphics);
public void drawBarcode(string filename);    
public Bitmap drawBarcode();
public void drawBarcode(Stream stream);             
*/