博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图片添加水印效果
阅读量:4950 次
发布时间:2019-06-11

本文共 996 字,大约阅读时间需要 3 分钟。

  1. //创建一个UIImage对象
  2.     UIImage *image = [UIImage imageNamed:@"scene1.jpg"];
  3. //1.建立bitmap Context
  4.     UIGraphicsBeginImageContext(image.size);
  5. //2.把原图绘制到context上
  6.     [image drawInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
  7. //3.把水印文字绘制到context上。
  8. //在左下角加水印
  9.     CGRect textFrame = CGRectMake(0, image.size.height-40, 200, 40);
  10. //设置水印文字属性
  11.     UIFont *font = [UIFont boldSystemFontOfSize:30];
  12.     NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
  13.     style.alignment = NSTextAlignmentCenter;
  14.     
  15.     UIColor *color = [UIColor colorWithRed:254.0/255 green:201.0/255 blue:21.0/255 alpha:1];
  16.     
  17.     [text drawInRect:textFrame withAttributes:
  18.      @{NSFontAttributeName:font,
  19.        NSForegroundColorAttributeName:color,
  20.        NSParagraphStyleAttributeName:style}];
  21. //4.从bitmap context上获取加了水印以后的图片。
  22.     UIImage *waterImage = UIGraphicsGetImageFromCurrentImageContext();
  23. //5.关闭bitmap context。
  24.     UIGraphicsEndImageContext();
  25. //6.返回获取的图片
  26.     return waterImage;
  27.  
  28.  
  29. 此方法最好独立成一个单独的类,只需一类方法就能完成。

转载于:https://www.cnblogs.com/SilverWinter/p/4423429.html

你可能感兴趣的文章
vue dialog样式
查看>>
oracle 表空间不足 ORA-00604 ORA-01653 ORA-02002 ORA-00604 ORA-01653
查看>>
深入理解jvm虚拟机 笔记
查看>>
Eclipse有助于提高开发速度的快捷键
查看>>
VS2013程序打包部署(图解),vs2013部署
查看>>
浅学sklearn库之各分类算法实践
查看>>
luogu P3565 [POI2014]HOT-Hotels
查看>>
[No000018F]Vim自动缩进配置、原理和tab键替换空格-Vim使用技巧(4)
查看>>
C I/O流总览
查看>>
CURL与PHP-CLI的应用【CURL篇】
查看>>
并不对劲的bzoj1095:p2056:[ZJOI2007]捉迷藏
查看>>
hdu---5652---India and China Origins
查看>>
001-Two Sum
查看>>
Linux根据端口查看进程
查看>>
[JavaEE]Hibernate 所有缓存机制详解
查看>>
python-面向对象(股票对象举例)
查看>>
AnkhSVN 简体中文版 2.3.11249.4534
查看>>
chrome收藏夹整理
查看>>
用ctrl+鼠标滚动调节字体大小
查看>>
查数据库有哪些表、查数据库
查看>>