c# ZXing 二維碼 支持中文


public class QRCode
    {
        public static Bitmap QR(string content)
        {
            Dictionary<EncodeHintType, object> hints = new Dictionary<EncodeHintType, object>();
            hints.Add(EncodeHintType.CHARACTER_SET, "UTF-8");//解決中文異常
            QRCodeWriter writer = new QRCodeWriter();
            BitMatrix matrix= writer.encode(content, BarcodeFormat.QR_CODE, 300, 300,hints);
            Bitmap m = toBitmap(matrix);
            //m.Save("d:\\a.tif", ImageFormat.Tiff);
            return m;
        }
        public static Bitmap toBitmap(BitMatrix matrix)
        {
            int width = matrix.Width;
            int height = matrix.Height;
            Bitmap bmap = new Bitmap(width, height, PixelFormat.Format32bppArgb);
            for (int x = 0; x < width; x++)
            {
                for (int y = 0; y < height; y++)
                {
                    bmap.SetPixel(x, y,matrix[x, y]? ColorTranslator.FromHtml("0xFF000000") : ColorTranslator.FromHtml("0xFFFFFFFF"));
                }
            }
            return bmap;
        }
        public static byte[] BitmapToBytes(Bitmap Bitmap)
        {
            MemoryStream ms = null;
            try
            {
                ms = new MemoryStream();
                Bitmap.Save(ms,ImageFormat.Tiff);
                byte[] byteImage = new Byte[ms.Length];
                byteImage = ms.ToArray();
                return byteImage;
            }
            catch (ArgumentNullException ex)
            {
                throw ex;
            }
            finally
            {
                ms.Close();
            }
        }
    }

 

public IActionResult Get()
        {
            try
            {
                var m = QRCode.QR("返回二維碼測試文本!!!!");
                var n = QRCode.BitmapToBytes(m);
                new FileExtensionContentTypeProvider().Mappings.TryGetValue(".tif", out var contenttype);
                return File(n, contenttype, "qr.tif");
            }
            catch (Exception e)
            {
                return Ok(e.Message);
            }
        }

可通過此api下載二維碼文件,支持中文

需要安裝ZXing.Net,我的版本0.16.5


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM