在 iOS 中合并多个裁剪图像以形成单个图像
我已经从较大的图像中裁剪了多个图像,现在我必须将这些裁剪后的图像合并起来形成一个可以加载到单个图像视图中的新图像。
I have cropped multiple images from a bigger image, now I have to join these cropped images to form a new image which can be loaded into a single imageview.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要做的是创建一个图像上下文,将图像绘制到该上下文中,然后将该上下文转换为图像。
话虽如此,最好为每个图像创建一个 UIImageView。
What you need to do is create an image context, draw your images into this context, then convert this context to an image.
That being said, it is probably better to just make a UIImageView for each image.