这是一个标题
正式衣蛾能死啊死安徽省晒晒酸奶酸奶赛思安赛事你赛尼斯按时就撒手及哦啊叫少睡觉奥少见扫睡觉奥少睡觉奥
无序列表
- 1 晒晒晒晒晒晒晒晒晒那些看似塞纳擦三是哪款 三棵树那看三棵树那看萨克尼克斯
- 2
- 3
有序列表
- sais
- sjaisa
- saksaksnak
引用
晒晒晒晒sjainxkansak你看少数你打开是哪款带你看撒开上哪看啊啊叫是哪款不打卡萨克不打卡
插入图片
插入链接
粗体
这是粗体
斜体
我是斜体
我是table
Tables | Are | Cool | 飒飒 asasasasada |
---|---|---|---|
col 3 is | right-aligned | $1600 | |
col 2 is | centered | $12 | |
zebra stripes | are neat | $1 | |
这是自己的哈 | 这是第二 | 这是最后sjaks |
我是代码
//设置字体样式
- (UIImage*)text:(NSString*)text addToView:(UIImage*)image
{
UIFont*font = [UIFont fontWithName:@"Arial-BoldItalicMT"size:32];
NSDictionary*dict =@{NSFontAttributeName:font,NSForegroundColorAttributeName:[UIColor redColor]};
CGSize textSize = [text sizeWithAttributes:dict];
//绘制上下文
UIGraphicsBeginImageContext(image.size);
[image drawInRect:CGRectMake(0,0, image.size.width, image.size.height)];
int border =10;
CGRect re = {CGPointMake(image.size.width- textSize.width- border, image.size.height- textSize.height- border), textSize};
//此方法必须写在上下文才生效
[text drawInRect:re withAttributes:dict];
UIImage *newImage =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}