获取 七牛 图片高度 失败?

string domian = "zoyeoimg.qiniudn.com";
            string key1 = "94E4D92B023D6C4E2D1E877D440C5F7E";
            RSClient client = new RSClient();

            string url = Qiniu.RS.GetPolicy.MakeBaseUrl(domian, key1);
             ImageInfoRet infoRet = ImageInfo.Call(url);
            int imgW = 0;
            int imgH = 0;
            if (infoRet.OK)
            {
                imgW = infoRet.Width;
                imgH = infoRet.Height;
            }

执行到 infoRet.Width = 0 这是为什么?
执行效果

阅读 4.3k
1 个回答