如何将superview的图片保存到本地手机相册
我正在将图像保存到相册。
drawImage是imageview!
在 UIImageView
drawImage 之上,我添加了另一个 UIImageView stampImageView
;
[drawImage addSubview:stampImageView];
-(void)saveImage:(id)sender{
UIImageWriteToSavedPhotosAlbum(drawImage.image, nil, nil, nil);
}
当我保存后检查相册时,我可以看到我添加到drawImage中的stampImage。
任何人都可以给我关于这种情况的建议吗?
I am saving image to photo album.
drawImage Is imageview!
On top of UIImageView
drawImage i am adding another UIImageView stampImageView
;
[drawImage addSubview:stampImageView];
-(void)saveImage:(id)sender{
UIImageWriteToSavedPhotosAlbum(drawImage.image, nil, nil, nil);
}
When i check the photo album after saving, i can able to see the stampImage on that Which i added to drawImage.
Can any one let advice me about this situation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@感谢对我来说,它有效!对我来说,当我使用上面的代码时。
@ Thanks For to me, its working! for me when i used this above code.