轉載於作者Lucas汪星人:https://www.jianshu.com/p/9955b4f27501 在原先作者的基礎上根據我自己修改了一些代碼僅供參考: 首先需要引用NuGet包:ZXing.Net.Bindings.ZKWeb.System.Drawing 也可以使用終端開發者PowerSh ...
轉載於作者Lucas汪星人:https://www.jianshu.com/p/9955b4f27501
在原先作者的基礎上根據我自己修改了一些代碼僅供參考:
首先需要引用NuGet包:ZXing.Net.Bindings.ZKWeb.System.Drawing
也可以使用終端開發者PowerShell使用指令安裝:dotnet add package ZXing.Net.Bindings.ZKWeb.System.Drawing
然後可以自己去寫一個Demo創建一個MVC控制器寫入以下代碼:
/// <summary>
/// 生成條形碼,保存成圖片,使用了ZXing
/// </summary>
public IActionResult GenerateQRimage(string content)//public static byte[] GenerateQRimage(string content)
{
//初始化條形碼格式,寬高,以及PureBarcode=true則不會留白框
var writer = new BarcodeWriterPixelData
{
Format = BarcodeFormat.CODE_128,//編碼格式CODE_128或者CODABAR
Options = new EncodingOptions { Height = 31, Width = 167, PureBarcode = true, Margin = 1 }
};
var pixelData = writer.Write(content);
using (var bitmap = new System.DrawingCore.Bitmap(pixelData.Width, pixelData.Height, PixelFormat.Format32bppRgb))
using (var ms = new MemoryStream())
{
var bitmapData = bitmap.LockBits(new System.DrawingCore.Rectangle(0, 0, pixelData.Width, pixelData.Height),
System.DrawingCore.Imaging.ImageLockMode.WriteOnly, System.DrawingCore.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.DrawingCore.Imaging.ImageFormat.Png);
System.DrawingCore.Image image = System.DrawingCore.Bitmap.FromStream(ms, true);
image.Save("D:\\2010-asmart-healthcare\\SmartHealthcare\\SmartHealthcare.Web\\wwwroot\\barcodeimg\\" + content + ".png");
byte[] bytes = ms.GetBuffer();
if (bytes != null)
{
return Ok("生成成功");
}
else
{
return Ok("生成失敗");
}
}
}
在這段代碼中要註意引用的命名空間,如:System.DrawingCore 具體的情況請在使用到你的項目中去解決大概率就是命名空間的原因,還有代碼中
image.Save("D:\\2010-asmart-healthcare\\SmartHealthcare\\SmartHealthcare.Web\\wwwroot\\barcodeimg\\" + content + ".png");具體的路徑可以自己去自定義,比如可以保存到你自己的電腦文件夾中,改路徑就行了。
然後創建一個MVC視圖也是寫一個小Demo去測試,代碼如下:
@{
Layout = null;
}
<div>
<header>
<button id="imgOn">生成條形碼</button>
@*url: '/BarCode/GetBarCode?message=' + message + "&gifFileName=" + "D:/test/test.gif" + "&width=" + 100 + "&height=" + 50,*@
</header>
</div>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/jquery/dist/jquery.js"></script>
<script>
$("#imgOn").click(function () {
var message = "456789";
$.ajax({
url: '/BarCode/GenerateQRimage?content=' + message,
type: 'get',
success: function (res) {
console.log(res);
}
})
})
</script>
代碼中的message可以自定義條形碼中掃描出來的具體內容 比如我在代碼中寫的456789,那麼我掃描條形碼識別出來的內容就是456789
後端接受的參數名字叫content,具體的實現就需要結合具體的業務。
然後就可以生成條形碼了。