当前位置:   article > 正文

.net core 引用ZXing生成二维码/条形码_.netcore linux生成二维码

.netcore linux生成二维码

首先当然是要先注入 ZXing的包了, ZXing.Net 这个包在linux 是不受支持的, 所以这边注入的包:

ZXing.Net.Bingdings.imagesSharp.V2

注入了这个包以后, 接下去的就都简单了:

  1. /// <summary>
  2. /// 生成二维码
  3. /// </summary>
  4. /// <param name="value">value</param>
  5. /// <param name="barcodeFormat">生成的类型 CODE_39/ CODE_93/ CODE_128/ QR_CODE ....</param>
  6. /// <param name="pathUrl">保存路径</param>
  7. /// <param name="fileName">文件名字</param>
  8. /// <param name="width">二维码宽,默认500</param>
  9. /// <param name="height">二维码高,默认500</param>
  10. public static void GenerateCode(string value, string barcodeFormat, string pathUrl, string fileName, int width = 500, int height = 500)
  11. {
  12. var barcodeFormatType = (BarcodeFormat)Enum.Parse(typeof(BarcodeFormat), barcodeFormat);
  13. var writer = new ZXing.ImageSharp.BarcodeWriter<Rgba32>
  14. {
  15. Format = barcodeFormatType,
  16. Options = new ZXing.QrCode.QrCodeEncodingOptions
  17. {
  18. DisableECI = true,
  19. CharacterSet = "UTF-8",
  20. Width = width,
  21. Height = height,
  22. Margin = 1
  23. }
  24. };
  25. var image = writer.WriteAsImageSharp<Rgba32>(value);
  26. var ms = new MemoryStream();
  27. image.Save(ms, new PngEncoder());
  28. pathUrl = pathUrl + "/";
  29. using (var fileStream = File.Create(pathUrl + fileName))
  30. {
  31. ms.Seek(0, SeekOrigin.Begin);
  32. ms.CopyTo(fileStream);
  33. }
  34. }

其中可能会不清楚的就是: barcodeFormat 这个参数吧; 没事, 有截图

然后就解决了;

顺说一下, 如果你需要图片转成流, 看我这个(但是我只会 仅支持windows的方法):

注入: System.Drawing.Common这个包;


var watermarkedStream = new MemoryStream();

using (var img = Image.FromStream(stream))  //流转图片

{


                            img.Save(memoryStream, ImageFormat.Png);

//图片再转成流, 存到 memoryStream

}

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/125090
推荐阅读
相关标签
  

闽ICP备14008679号