创建QR码Base64并输入HTML的IMG标签

时间:2016-02-19 21:36:19

标签: html base64 qr-code

我从中获取一些JSON数据并创建QR码。然后我想将其转换为Base64字符串并将其放入我的html中的img标记中。但是,QR码不会创建图像。这是我尝试的方式:

// my string created from the JSON
string strInventoryData = string.Format(dataPortable, GeneratorID, MarketUnit);

// generate the QR Code
ZXing.Common.BitMatrix byteIMGNew = writer.encode(strInventoryData, 
                                           ZXing.BarcodeFormat.QR_CODE, 240, 240, null);
Bitmap bmp1 = new Bitmap(byteIMGNew.Width, byteIMGNew.Height);
Graphics g1 = Graphics.FromImage(bmp1);
 g1.Clear(Color.White);
 for (int x = 0; x < byteIMGNew.Height; ++x)
 {
    for (int y = 0; y < byteIMGNew.Width; ++y)
    {
        if (byteIMGNew[x, y])
           g1.FillRectangle(Brushes.Black, x, y, 1, 1);
        else
           g1.FillRectangle(Brushes.White, x, y, 1, 1);
    }
}

// create the base64 encoded image
System.IO.MemoryStream ms = new System.IO.MemoryStream();
bmp1.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
byte[] byteImage = ms.ToArray();
var SigBase64 = Convert.ToBase64String(byteImage);

// put it in the htm
strInnerData += "<td align='center' style='width:240px;height:240px'>
    <img alt='Embedded Image' src='data:image/png;base64,'" + SigBase64.ToString() + "' /></td>";

我做错了什么?

1 个答案:

答案 0 :(得分:1)

此代码对我有用:

QRCodeWriter qrCodeWriter = new QRCodeWriter();
BitMatrix bitMatrix = qrCodeWriter.encode(message, BarcodeFormat.QR_CODE, 500, 500);    
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
MatrixToImageWriter.writeToStream(bitMatrix,"png", outputStream);

String base64 = new String(Base64.getEncoder().encode(outputStream.toByteArray()));
...    
String strInnerData = "<td align='center' style='width:240px;height:240px'>"+
        "<img alt='Embedded Image' src='data:image/png;base64,'" + base64 + "' /></td>";