从图像视图获取图像?
我可以从图像视图中获取图像吗?请告诉我代码是什么样的..
Can I get an image from image view? Please tell me what the code looks like..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以从图像视图中获取图像吗?请告诉我代码是什么样的..
Can I get an image from image view? Please tell me what the code looks like..
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
https:// developer.apple.com/library/ios/#documentation/UIKit/Reference/UIImageView_Class/Reference/Reference.html%23//apple_ref/doc/uid/TP40006889
https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIImageView_Class/Reference/Reference.html%23//apple_ref/doc/uid/TP40006889
试试这个:
在 imageView 中显示图像
从 imageView 获取图像
Try This:
To display the image in imageView
To get Image from imageView
这实际上取决于您想对图像执行什么操作,但如果您只想获得指向图像的指针,那么您可以这样做。
It really depends on what you want to do with the image, but if you just want to get a pointer to the image then you would do this.
我假设您有一个
UIImageView
实例 imageview。使用下面的代码获取
UIImage
I assume you have an
UIImageView
instance imageview.Use the below to get the
UIImage
img 是来自 UIImageView imageView 的图像。
img is image from UIImageView imageView.