主要用时验证照片的真实性 以及照片版权等类信息
+(UIImage)YHWaterMarkImage:(UIImage)img withName:(NSString *)name
{
NSString* mark = name;
int w = img.size.width;
int h = img.size.height;
UIGraphicsBeginImageContext(img.size);
[img drawInRect:CGRectMake(0, 0, w, h)];
NSDictionary *attr = @{
NSFontAttributeName: [UIFont boldSystemFontOfSize:13], //设置字体
NSForegroundColorAttributeName : [UIColor cyanColor] //设置字体颜色
};
[mark drawInRect:CGRectMake(0, img.size.height-20,img.size.width ,20) withAttributes:attr];
UIImage *aimg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return aimg;
}
第一个参数传当前获取到的照片UIImage
第二个参数就是你想添加的水印字段
这边我个人添加的是系统当前时间(NSDate)
效果图如下
网友评论