Asp.net core 學習筆記 QR code and Barcode

QR code 和 Barcode 常常會使用到。html

Java 陣營有著名的 zxinggit

https://github.com/zxing/zxinggithub

.Net 有對接它的 portasp.net

https://github.com/micjahn/ZXing.Netide

調用很簡單spa

var qrWriter = new BarcodeWriterPixelData
{
    Format = BarcodeFormat.QR_CODE,
    Options = new EncodingOptions { Height = 1000, Width = 1000, Margin = 10 }
};
var pixelData = qrWriter.Write("i love you");
using (var bitmap = new Bitmap(pixelData.Width, pixelData.Height, System.Drawing.Imaging.PixelFormat.Format32bppRgb))
using (var ms = new MemoryStream())
{
    // lock the data area for fast access
    var bitmapData = bitmap.LockBits(new Rectangle(0, 0, pixelData.Width, pixelData.Height),
        System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format32bppRgb);
    try
    {
        // we assume that the row stride of the bitmap is aligned to 4 byte multiplied by the width of the image
        System.Runtime.InteropServices.Marshal.Copy(pixelData.Pixels, 0, bitmapData.Scan0,
            pixelData.Pixels.Length);
    }
    finally
    {
        bitmap.UnlockBits(bitmapData);
    }
    // save to stream as PNG
    //bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
    bitmap.Save(@"C:\keatkeat\my projects\asp.net core\2.2\html-to-pdf\Project\123.png", System.Drawing.Imaging.ImageFormat.Png);
}

Barcode Format 有不少種,能夠本身選。.net

這裏用到了 bitmap, 是從官網的 demo 裏抄來的. code

早期 core 不支持 system draw, 因此 demo 裏說依賴 CoreCompat.System.Drawing, orm

但後來 .net core 推出了 System.Drawing.Common 因此是跨平臺的了.htm

demo : https://github.com/micjahn/ZXing.Net/tree/master/Clients/ASP.NetCoreDemo

相關文章
相關標籤/搜索