如何让用户从 iOS 上的 google 图片搜索中选择图片

发布于 2024-09-29 04:55:25 字数 46 浏览 0 评论 0原文

有什么方法可以让用户从谷歌图像搜索中选择图像并将其转换为 UIImage 吗?

Is there any way that I can let the user select an image from a google images search and convert it into a UIImage?

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

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

发布评论

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

评论(1

念﹏祤嫣 2024-10-06 04:55:25

在我的脑海中,你可以这样做:

  • 在你自己的 UIWebView 中进行 Google 搜索
  • 使用 UIWebViewDelegate 响应请求,并过滤 Google 图像请求
  • 解析该 URL 以隔离源图像
  • 使用 NSUrlRequest 获取image
  • 将响应数据输入 UIImage

可能有一种更有效的方法,但这似乎是一种相对简单的方法。

Off the top of my head you could do it like this:

  • Do the Google search in your own UIWebView
  • Use the UIWebViewDelegate to respond to requests, and filter for the the Google image requests
  • Parse that URL to isolate the source image
  • Use NSUrlRequest to get the image
  • Feed the response data in to a UIImage

There may be a more efficient way, but this seems like a relatively simple way you could do it.

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