如何从 URL 获取图像

发布于 2024-11-26 13:43:03 字数 117 浏览 0 评论 0原文

如果我有来自 JSon Get 的 URL,请告诉我如何从 URL 获取 UIImage。我一直在寻找并找到一些技巧,但尚未成功。请帮助我。

提前致谢。

Kindly tell me how can i get UIImage from a URL if i have URL from a JSon Get. I have been searching and found some tips but not succeeded yet. Kindly help me.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赠我空喜 2024-12-03 13:43:03

在我看来非常简单。只需使用以下代码行:

NSURL *url = [NSURL URLWithString:@"http://yoursite.com/imageName.png/jpg"];

NSData *myData = [NSData dataWithContentsOfURL:url];

UIImage *image = [[[UIImage alloc] initWithData:myData] autorelease];

现在可以在任何您想要的地方使用此图像。希望这有帮助。

快乐编码!

Very simple in my point of view. Just use the following line of codes:

NSURL *url = [NSURL URLWithString:@"http://yoursite.com/imageName.png/jpg"];

NSData *myData = [NSData dataWithContentsOfURL:url];

UIImage *image = [[[UIImage alloc] initWithData:myData] autorelease];

Now use this image wherever you want. Hope this helps.

Happy Coding!

为人所爱 2024-12-03 13:43:03
UIImage* myImage = [UIImage imageWithData:
                    [NSData dataWithContentsOfURL:
                     [NSURL URLWithString:@"http.yourimageurl.jpg/png"]]];

img_imageOperatorimg.image=myImage;

希望这有帮助

UIImage* myImage = [UIImage imageWithData:
                    [NSData dataWithContentsOfURL:
                     [NSURL URLWithString:@"http.yourimageurl.jpg/png"]]];

img_imageOperatorimg.image=myImage;

Hope This helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文