码迷,mamicode.com
首页 > 其他好文 > 详细

图片处理

时间:2015-07-09 18:08:22      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:图片处理

给UILabel添加背景图片:

self.accountLabel = [[UILabel alloc]initWithFrame:CGRectMake(kXW(accountBtn), kY(accountBtn), 250, 32)];

 self.accountLabel.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"qipao.png"]];


图片拉伸:

在iOS6.0中,UIImage提供了一个方法处理图片拉伸

[java] view plaincopy
  1. - (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets resizingMode:(UIImageResizingMode)resizingMode  

  • UIImageResizingModeStretch:拉伸模式,通过拉伸UIEdgeInsets指定的矩形区域来填充图片
  • UIImageResizingModeTile:平铺模式,通过重复显示UIEdgeInsets指定的矩形区域来填充图片

[java] view plaincopy
  1. CGFloat top = 25// 顶端盖高度  
  2. CGFloat bottom = 25 ; // 底端盖高度  
  3. CGFloat left = 10// 左端盖宽度  
  4. CGFloat right = 10// 右端盖宽度  
  5. UIEdgeInsets insets = UIEdgeInsetsMake(top, left, bottom, right);  
  6. // 指定为拉伸模式,伸缩后重新赋值  
  7. image = [image resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch];  


版权声明:本文为博主原创文章,未经博主允许不得转载。

图片处理

标签:图片处理

原文地址:http://blog.csdn.net/tubiebutu/article/details/46818483

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!