您的位置:首页 > 其它

图片上添加文字

2015-08-04 15:26 225 查看
Objective-C

- (UIImage *) addText:(UIImage *)img text:(NSString *)mark {

int w = img.size.width;

int h = img.size.height;

UIGraphicsBeginImageContext(img.size);

[[UIColor redColor] set];

[img drawInRect:CGRectMake(0, 0, w, h)];

[mark drawInRect:CGRectMake(10, 55, 130, 80) withFont:[UIFont systemFontOfSize:18]];

UIImage *aimg = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return aimg;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: