0

I want save my image in PDF format in document directory. Please suggest me for saving format . I know only PNG and JPEG saving format in iOS .

4

2 回答 2

3

首先,我们计算 PDF 页面的大小。根据图像大小和我们要绘制图像的分辨率,页面大小是这样计算的(为了灵活性,支持不同的水平和垂直分辨率):

 double pageWidth = image.size.width * image.scale * 72 / horzRes;
 double pageHeight = image.size.height * image.scale * 72 / vertRes;

现在我们已准备好创建 PDF 文件。它可以直接在磁盘或内存中创建。为了灵活性,让我们在内存中创建它。

NSMutableData *pdfFile = [[NSMutableData alloc] init];
CGDataConsumerRef pdfConsumer = 
    CGDataConsumerCreateWithCFData((CFMutableDataRef)pdfFile);
// The page size matches the image, no white borders.
CGRect mediaBox = CGRectMake(0, 0, pageWidth, pageHeight);
CGContextRef pdfContext = CGPDFContextCreate(pdfConsumer, &mediaBox, NULL);

PDF 上下文已创建,我们现在可以执行转换:

CGContextBeginPage(pdfContext, &mediaBox);
CGContextDrawImage(pdfContext, mediaBox, [image CGImage]);
CGContextEndPage(pdfContext);

工作完成,完成 PDF 文件并发布使用的对象。

CGContextRelease(pdfContext); CGDataConsumerRelease(pdfConsumer);

PDF 文件现在在 pdfFile 变量中可用。我把上面的所有代码都放在了 PDFImageConverter 实用程序类中的 convertImageToPDF:withHorizo​​ntalResolution:verticalResolution: 静态方法中,可以这样使用:

NSData *pdfData = [PDFImageConverter convertImageToPDF: image 
    withHorizontalResolution: 300 verticalResolution: 300];
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents/image.pdf"];
[pdfData writeToFile:path atomically:NO];

有时需要将图像转换为 PDF 并使用预定义的页面大小,例如 Letter 或 A4。还可以为图像指定最大边界矩形,因此它被放置在页面上的特定位置并且它不会超出页面。在这种情况下,必须调整图像大小(增加分辨率)以确保图像适合给定的矩形。

double imageWidth = image.size.width * image.scale * 72 / resolution;
double imageHeight = image.size.height * image.scale * 72 / resolution;

double sx = imageWidth / boundsRect.size.width;
double sy = imageHeight / boundsRect.size.height;

// At least one image edge is larger than maxBoundsRect, reduce its size.
if ((sx > 1) || (sy > 1)) {
    double maxScale = sx > sy ? sx : sy;
    imageWidth = imageWidth / maxScale;
    imageHeight = imageHeight / maxScale;
}


// Put the image in the top left corner of the bounding rectangle
CGRect imageBox = CGRectMake(
    boundsRect.origin.x, boundsRect.origin.y + boundsRect.size.height - imageHeight, 
    imageWidth, imageHeight);

有了最后一个框,可以使用文章前半部分的代码将图像转换为 PDF。新转换方法的代码放在 PDFImageConverter 实用程序类中的 convertImageToPDF:withResolution:maxBoundsRect:pageSize: 静态方法中,它的使用如下:

CGSize pageSize = CGSizeMake(612, 792);
CGRect imageBoundsRect = CGRectMake(50, 50, 512, 692);

NSData *pdfData = [PDFImageConverter convertImageToPDF: image 
    withResolution: 300 maxBoundsRect: imageBoundsRect pageSize: pageSize];

NSString *path = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents/image.pdf"];
[pdfData writeToFile:path atomically:NO];

您也可以在这里下载源代码表格。

于 2013-05-28T06:43:40.650 回答
0

您可以使用本教程convert-an-image-to-pdf-on-the-iphone-and-ipad

然后使用以下命令将 pdf 文件保存在文档目录中:

//******** Method To Copy Image to Directory ******** //

- (void) copyFileToDocuments:(NSString *)fileURL
{
    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

    NSString *destinationPath = [documentsDirectory stringByAppendingFormat:@"/convertedImage.pdf"];
    NSError *error;
    [[NSFileManager defaultManager] copyItemAtURL:[NSURL fileURLWithPath:fileURL] toURL:[NSURL fileURLWithPath:destinationPath] error:&error];

}

然后打电话

    [self  copyFileToDocuments:moviePath];

希望它可以帮助你。

于 2013-05-28T06:44:50.853 回答