如何在 iPhone 中的图像上添加水印
我想在 UIImage
上添加水印。
为此,我用谷歌搜索并研究了该网站上的问题,例如 this 但没有得到任何帮助。
I want to add watermarks on an UIImage
.
For that i have googled and also studied questions on this website like this
But did not get any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需在图像视图上添加图像,然后在其上添加一个子视图,并减少子视图的 alpha,使其看起来像水印,或者您可以添加标签,但在标签中,您必须更改其角度以显示角度
Just add image on your image view and then add one subview on it and set alpha of subview less so it look like water mark or you can add label, but in label you have to change its angel to show angular
如果您的 UIImage 假设在 imageview 中并且水印图像在 imageview1 中,则使用 UIView 类的方法
[imageview addSubview: imageview1];
。
If your UIImage is suppose in the imageview and watermark image in the imageview1, then use method of UIView class
[imageview addSubview: imageview1];
.
试试这个
Try this