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

创建pdf

时间:2015-09-13 21:24:43      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

 //创建pdf图形上下文
    NSString *path = [NSHomeDirectory() stringByAppendingString:@"/Documents/pdf.pdf"];
    NSLog(@"%@",path);
    UIGraphicsBeginPDFContextToFile(path, CGRectZero, nil);
//    CGContextRef context = UIGraphicsGetCurrentContext();
    //创建pdf中某一页
    UIGraphicsBeginPDFPage();
    UIImage *image = [UIImage imageNamed:@"1.png"];
    [image drawInRect:CGRectMake(0, 0, 200, 200)];
    NSString *str = @"上海宝山";
    [str drawInRect:CGRectMake(0, 220, 200, 100) withAttributes:@{NSFontAttributeName:[UIFont boldSystemFontOfSize:30],NSForegroundColorAttributeName:[UIColor redColor]}];
    UIGraphicsEndPDFContext();

 

创建pdf

标签:

原文地址:http://www.cnblogs.com/liaods/p/4805512.html

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