从图像视图获取图像?

发布于 2024-11-04 17:09:46 字数 35 浏览 0 评论 0原文

我可以从图像视图中获取图像吗?请告诉我代码是什么样的..

Can I get an image from image view? Please tell me what the code looks like..

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

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

发布评论

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

评论(5

最偏执的依靠 2024-11-11 17:09:46

试试这个:

UIImage *setImg=[ UIImage imageNamed:@"testImg.png"];

在 imageView 中显示图像

UIImageView *imgView=[UIImageView alloc]initWithImage:setImg];

从 imageView 获取图像

UIImage *getImg=imgView.image;

Try This:

UIImage *setImg=[ UIImage imageNamed:@"testImg.png"];

To display the image in imageView

UIImageView *imgView=[UIImageView alloc]initWithImage:setImg];

To get Image from imageView

UIImage *getImg=imgView.image;
傲影 2024-11-11 17:09:46

这实际上取决于您想对图像执行什么操作,但如果您只想获得指向图像的指针,那么您可以这样做。

UIImage *imageIWant = imageView.image;

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.

UIImage *imageIWant = imageView.image;
滥情空心 2024-11-11 17:09:46

我假设您有一个 UIImageView 实例 imageview

使用下面的代码获取UIImage

UIImage* myImage = [imageview image];

I assume you have an UIImageView instance imageview.

Use the below to get the UIImage

UIImage* myImage = [imageview image];
沧笙踏歌 2024-11-11 17:09:46
UIImageView *imageView;
UIImage *img = imageView.image;

img 是来自 UIImageView imageView 的图像。

UIImageView *imageView;
UIImage *img = imageView.image;

img is image from UIImageView imageView.

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