我想创造&通过导入文本和显示来显示PDF图像在里面。有没有可以帮助我的代码或文件? 谢谢......
答案 0 :(得分:0)
查看Adobe PDF Library SDK - http://www.adobe.com/devnet/pdf/library.html
约翰
答案 1 :(得分:0)
我确实意识到这个问题很老了,我发现它还没有得到解答。
可以使用CoteText在iOS中创建PDF。有关如何创建PDF并在Apple的iOS developer library中添加一些文本的相当好的教程。我发现这个教程有点过时,并没有完全回答这个问题,所以我整理了一些代码,包括创建PDF,绘制文本,绘制图像和显示PDF。
下面的代码将绘制带有图像和文字的PDF。然后将其保存到提供的。
+(void)drawPDF:(NSString*)fileName
{
// Create the PDF context using the default page size of 612 x 792
UIGraphicsBeginPDFContextToFile(fileName, CGRectZero, nil);
// Mark the beginning of a new page with a sample size
UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, 612, 792), nil);
[self drawTextWithString:@"Hello World" inFrame:CGRectMake(20, 20, 300, 50)];
UIImage* image = [UIImage imageNamed:@"helloWorld.png"];
CGRect frame = CGRectMake(30, 30, 200, 50);
[self drawImage:image inRect:frame];
UIGraphicsEndPDFContext();
}
这是绘制文本的代码。请注意,它没有考虑剪裁或换行,因此如果字符串大于框架,它仍将被绘制。
+(void)drawTextWithString:(NSString *)stringToDraw inFrame:(CGRect)frameRect {
UIFont *theFont = [UIFont systemFontOfSize:12];
NSDictionary *attributes = @{ NSFontAttributeName: theFont};
// The text will be drawin in the frameRect, where (0,0) is the top left corner
[stringToDraw drawInRect:frameRect withAttributes:attributes];
}
这是绘制图像的代码。这很简单。
+(void)drawImage:(UIImage*)image inRect:(CGRect)rect {
[image drawInRect:rect];
}
以下功能将使用UIWebView呈现PDF。
-(void)renderPdfFile:(NSString *)fileName
{
// This is here for demo purposes only. In a real world example the UIWebView
// will probably be linked directly from the story board
UIWebView* webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
NSURL *url = [NSURL fileURLWithPath:fileName];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView setScalesPageToFit:YES];
[webView loadRequest:request];
[self.view addSubview:webView];
}
如果您对渲染PDF文件感兴趣,我还有其他帖子here,这可能会有用。