Unity生成二维码功能

当时在做的时候,找了好多dll,最好找到这个dll,  什么都不说啦!

   public Texture2D encoded;//生成的二维码为Texture2D类型  

    public string Lastresult;//二维码中所包含的内容信息,我是使用了GUID进行代替  
    public int count = 1;//生成几个二维码  
    void Start ()
    {
        encoded = new Texture2D(256, 256);
        for (int i = 0; i < count; i++)
        {
            var textForEncoding = Lastresult;
            if (textForEncoding != null)
            {
                var color32 = Encode(textForEncoding, encoded.width, encoded.height);
                encoded.SetPixels32(color32);
                encoded.Apply();
                byte[] bytes = encoded.EncodeToPNG();//把二维码转成byte数组,然后进行输出保存为png图片就可以保存下来生成好的二维码  
                if (!Directory.Exists(Application.dataPath + "/AdamBieber"))//创建生成目录,如果不存在则创建目录  
                {
                    Directory.CreateDirectory(Application.dataPath + "/AdamBieber");
                }
                string fileName = Application.dataPath + "/AdamBieber/" + textForEncoding + ".png";
                System.IO.File.WriteAllBytes(fileName, bytes);
            }
        }
    }
    private static Color32[] Encode(string textForEncoding, int width, int height)
    {
        Dictionary<EncodeHintType, object> hints = new Dictionary<EncodeHintType, object>();
        hints.Add(EncodeHintType.CHARACTER_SET, "UTF-8");                                                  //默认的编码不支持中文,将输入内容的编码格式
        var encoder = new QRCodeWriter
        {


        };
        var writer = new BarcodeWriter
        {
            //Format = BarcodeFormat.QR_CODE,
            //Options = new QrCodeEncodingOptions
            //{
            //    Height = height,
            //    Width = width,
            //},
            Encoder = encoder
        };
        var bitMatrix = writer.Encoder.encode(textForEncoding, BarcodeFormat.QR_CODE, width, height, hints);
        return writer.Write(bitMatrix);

    }


dll的百度云盘地址:链接: http://pan.baidu.com/s/1pLavJmz 密码: wqyb

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值