当前位置:   article > 正文

Unity 从服务器拉取图片并生成二维码_hs 阿里云的图片地址画二维码

hs 阿里云的图片地址画二维码

用到的插件是:zxing二维码插件。图片上传在阿里云。

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using ZXing;
  6. using ZXing.QrCode;
  7. public class Test : MonoBehaviour
  8. {
  9. public RawImage rawImage1;//返回二维码图片
  10. private void Start()
  11. {
  12. Photo();
  13. }
  14. private void Photo()
  15. {
  16. string photopath = "";//获取网址信息
  17. Texture2D ImgQR = new Texture2D(256, 256);
  18. ImgQR.SetPixels32(Encode(photopath, 256, 256));//将网址转成二维码
  19. ImgQR.Apply();
  20. rawImage1.texture = ImgQR;
  21. }
  22. public Color32[] Encode(string textForEncoding, int width, int height)
  23. {
  24. BarcodeWriter writer = new BarcodeWriter();
  25. writer.Format = BarcodeFormat.QR_CODE;
  26. writer.Options = new QrCodeEncodingOptions();
  27. writer.Options.Height = height;
  28. writer.Options.Width = width;
  29. writer.Options.Margin = 0;
  30. return writer.Write(textForEncoding);
  31. }
  32. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/715866
推荐阅读
相关标签
  

闽ICP备14008679号