| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 
 | // 给图片加水印- (void)addWatermarkToPicture{
 // 获取原图片
 UIImage *image = [UIImage imageNamed:@"FZSDKLib.bundle/001.jpg"];
 // 计算图片的size
 CGSize imageSize = CGSizeMake(image.size.width, image.size.height);
 // 开启图片类型的图形上下文
 UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
 // 绘制图片
 [image drawAtPoint:CGPointZero];
 // 水印的文字
 NSString *str = @"水印文字";
 // 绘制文字水印
 [str drawAtPoint:CGPointMake(30, 30) withAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20], NSForegroundColorAttributeName:[UIColor redColor]}];
 // 水印的图片
 UIImage *logoImage = [UIImage imageNamed:@"FZSDKLib.bundle/companyLogo"];
 // 绘制图片水印
 [logoImage drawAtPoint:CGPointMake(imageSize.width - logoImage.size.width - 30, imageSize.height - logoImage.size.height - 30)];
 // 取图片
 image = UIGraphicsGetImageFromCurrentImageContext();
 // 关闭图片类型的图形上下文
 UIGraphicsEndImageContext();
 // 保存到相册中
 UIImageWriteToSavedPhotosAlbum(image, NULL, NULL, NULL);
 }
 
 | 
      -------------本文结束感谢您的阅读-------------