How to merge multiple UIImageViews into one UIImage(如何将多个 UIImageView 合并为一个 UIImage)
问题描述
我有 2 个 UIImageViews 彼此叠放(图片 + 覆盖框),我想将它们作为 1 张图片保存到相机胶卷中.
I have 2 UIImageViews laying on top of each other ( picture + overlay frame ) and I want to save them to the camera roll as 1 picture.
我应该如何组合这 2 个 UIImageView,以便我可以使用结果"UIImage 调用 UIImageWriteToSavedPhotosAlbum 函数?
How should I combine those 2 UIImageViews so that I can call the UIImageWriteToSavedPhotosAlbum function, using a 'result' UIImage?
推荐答案
我现在附近没有我的 Mac,但我以前做过.该过程是您将 UIImageView
渲染到位图上下文中,然后从该上下文创建一个 CGImage
,您可以使用它来创建一个新的 UIImage代码>来自.阅读
CGBitmapContext
,包括 CGBitmapContextCreateImage
I don't have my Mac nearby at the moment, but I have done this before.
The process is that you'll render the UIImageView
s into a bitmap context, then create a CGImage
from that context that you can use to create a new UIImage
from.
Read up on CGBitmapContext
, including CGBitmapContextCreateImage
这篇关于如何将多个 UIImageView 合并为一个 UIImage的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将多个 UIImageView 合并为一个 UIImage
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01