如何在 Objective c 中连接两个图像?

发布于 2024-08-16 11:44:53 字数 85 浏览 1 评论 0原文

我有两个 UIImageView,我想将它们连接成一个 UIImageView。让您知道,这些图像具有一定的透明度,因此您可以看到它们。而且它们的尺寸相同。

I have two UIImageView's, and I want to concatenate them both to be one UIImageView. To let you know, the images have some transparency to them so you will see both of them. Als they are the same size.

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

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

发布评论

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

评论(2

毅然前行 2024-08-23 11:44:54

如果你想将一个 imageView 覆盖在另一个 imageView 上,只需将其背景颜色设置为清除并将其移动到上面,可以使用 IB 或直接通过代码设置其框架。

If you want to overlay one imageView over another, just set its backgroundColor to clear and move it over, either using IB or directly setting its frame via code.

日记撕了你也走了 2024-08-23 11:44:54

嘿,如果您使用两个静态图像视图,那么您可以通过使用此代码拍摄屏幕截图来完成此操作

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 UIGraphicsBeginImageContext(self.view.bounds.size);
 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 
 UIImage *savedImg = UIGraphicsGetImageFromCurrentImageContext();//here is the final image
 UIGraphicsEndImageContext();
 [pool release];

希望这会有所帮助。

hey if you are using two static image-views then you can do the this by taking the screen-shot with this code

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 UIGraphicsBeginImageContext(self.view.bounds.size);
 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; 
 UIImage *savedImg = UIGraphicsGetImageFromCurrentImageContext();//here is the final image
 UIGraphicsEndImageContext();
 [pool release];

Hope this helps.

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