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

实现倾斜文字水印背景

时间:2016-08-30 10:46:06      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

  早上群里有人问:斜体文字水印背景,文字不确定的怎么做。刚好前段时间做过,特此分享下并记录。

  其主要原理是利用UIColor类的一个方法:把图片变成颜色。

[[UIColor alloc] initWithPatternImage:xxxxx];

该方法会把图片平铺变成一个颜色实体。

  代码产生一张倾斜文字图片:

- (UIImage *)imageWithText:(NSString *)text{
    
    /**
     这里之所以外面再放一个UIView,是因为直接用label画图的话,旋转就不起作用了
     */
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    view.backgroundColor = [UIColor clearColor];
    
    UILabel *label = [[UILabel alloc] initWithFrame:view.bounds];
    label.backgroundColor = [UIColor clearColor];
    label.textColor = [UIColor orangeColor];
    label.text = text;
    label.transform = CGAffineTransformMakeRotation(-M_PI/4.0);
    [view addSubview:label];
    
    
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, [UIScreen mainScreen].scale);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image=UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    return image;
}

  好了,可以用了:view.backgroundColor = [[UIColor alloc] initWithPatternImage:[self imageWithText:@"文字倾斜"]];

  效果图:

      技术分享

 

实现倾斜文字水印背景

标签:

原文地址:http://www.cnblogs.com/tufeibo/p/5820878.html

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