在 objective c 中写入 UIWebView.scrollView 中的 PDF 文件
Write PDF file from UIWebView.scrollView in objective c
我在 objective c 的 uiwebview 中加载了 10 页的 pdf 文件。在我想从 uiwbview 编写新的 pdf 文件之后。请哪位帮忙解答
我想写UIWebview.scrollView。因为我在 UIWebview 滚动视图子视图中添加了一些图像。有可能
请检查我下面的代码,我在单个 pdf 页面中获得了 10 页。我不知道是什么问题?
-(void)createPDFfromUIView:(UIWebView*)aView saveToDocumentsWithFileName:(NSString*)aFilename
{
NSArray *viewsToRemove1 = [self.pdfView.scrollView subviews];
for (UIView *v1 in viewsToRemove1)
{
int imgL = v1.frame.size.width;
if (imgL < 75 && imgL > 67)
{
[v1 removeFromSuperview];
aView = pdfView;
}
}
CGSize fullSize = aView.scrollView.contentSize;
NSMutableData *pdfData = [NSMutableData data];
CGRect oldFrame = aView.frame;
[aView sizeToFit];
CGRect rect = CGRectMake(aView.scrollView.contentOffset.x, aView.scrollView.contentOffset.y, fullSize.width, fullSize.height);
// Points the pdf converter to the mutable data object and to the UIView to be converted
UIGraphicsBeginPDFContextToData(pdfData, self.pdfView.scrollView.bounds, nil);
UIGraphicsBeginPDFPage();
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
[self.pdfView.scrollView.layer renderInContext:pdfContext];
// remove PDF rendering context
UIGraphicsEndPDFContext();
[pdfData writeToFile:getPdfpath atomically:YES];
NSLog(@"documentDirectoryFileName: %@",getPdfpath);
}
您可以使用类似这样的方法将 PDF 加载到 NSData
对象中:
NSData *pdfFile = [NSData dataWithContentsOfURL:webView.request.URL];
然后,您可以使用NSData
方法将数据写入文件:
[pdfFile writeToFile:filePath atomically:YES];
当然,您需要将 filePath
设置为适当的可写位置来存储文件/
如果您需要调用和访问任何文件,那么首先您需要将该文件添加到您的项目中,然后您可以使用以下代码访问它。
NSString* path = [[NSBundle mainBundle] pathForResource:@"Terms"
ofType:@"txt"];
NSString *content = [NSString stringWithContentsOfFile:path
encoding:NSUTF8StringEncoding
error:NULL];
我在 objective c 的 uiwebview 中加载了 10 页的 pdf 文件。在我想从 uiwbview 编写新的 pdf 文件之后。请哪位帮忙解答 我想写UIWebview.scrollView。因为我在 UIWebview 滚动视图子视图中添加了一些图像。有可能
请检查我下面的代码,我在单个 pdf 页面中获得了 10 页。我不知道是什么问题?
-(void)createPDFfromUIView:(UIWebView*)aView saveToDocumentsWithFileName:(NSString*)aFilename
{
NSArray *viewsToRemove1 = [self.pdfView.scrollView subviews];
for (UIView *v1 in viewsToRemove1)
{
int imgL = v1.frame.size.width;
if (imgL < 75 && imgL > 67)
{
[v1 removeFromSuperview];
aView = pdfView;
}
}
CGSize fullSize = aView.scrollView.contentSize;
NSMutableData *pdfData = [NSMutableData data];
CGRect oldFrame = aView.frame;
[aView sizeToFit];
CGRect rect = CGRectMake(aView.scrollView.contentOffset.x, aView.scrollView.contentOffset.y, fullSize.width, fullSize.height);
// Points the pdf converter to the mutable data object and to the UIView to be converted
UIGraphicsBeginPDFContextToData(pdfData, self.pdfView.scrollView.bounds, nil);
UIGraphicsBeginPDFPage();
CGContextRef pdfContext = UIGraphicsGetCurrentContext();
[self.pdfView.scrollView.layer renderInContext:pdfContext];
// remove PDF rendering context
UIGraphicsEndPDFContext();
[pdfData writeToFile:getPdfpath atomically:YES];
NSLog(@"documentDirectoryFileName: %@",getPdfpath);
}
您可以使用类似这样的方法将 PDF 加载到 NSData
对象中:
NSData *pdfFile = [NSData dataWithContentsOfURL:webView.request.URL];
然后,您可以使用NSData
方法将数据写入文件:
[pdfFile writeToFile:filePath atomically:YES];
当然,您需要将 filePath
设置为适当的可写位置来存储文件/
如果您需要调用和访问任何文件,那么首先您需要将该文件添加到您的项目中,然后您可以使用以下代码访问它。
NSString* path = [[NSBundle mainBundle] pathForResource:@"Terms"
ofType:@"txt"];
NSString *content = [NSString stringWithContentsOfFile:path
encoding:NSUTF8StringEncoding
error:NULL];