Unity加载网络图片

2024-05-08 11:40:43 浏览数 (1)

最近一个需求需要展示二维码,我本来已经用zxing根据给定的链接,生成二维码了,结果后端返回的是图片链接。。没办法,只能改成拿到图片链接以后加载并显示。

代码语言:csharp复制
IEnumerator DownloadAndShowImage()
{
    string imageLink = "xxx.png";
    UnityWebRequest www = UnityWebRequestTexture.GetTexture(imageLink);
    yield return www.SendWebRequest();
    if (www.result==UnityWebRequest.Result.ConnectionError || www.result==UnityWebRequest.Result.ProtocolError)
    {
        Debug.Log(www.error);
    }
    Texture2D texture = ((DownloadHandlerTexture)www.downloadHandler).texture;
    imgQRCode.texture = texture;
    imgQRCode.gameObject.SetActive(true);
}

imgQRCode 是一个RawImage 组件

0 人点赞