首页 > 其他 > 详细

创建pdf

时间:2015-09-13 21:22:50      阅读:245      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!