2

我做了一个可以制作PDF文件的应用程序。我只有一张图像作为基础,然后在其上叠加文本和其他图像以制作 PDF。问题是 PDF 大约 9 MB,只有一页。有没有办法将 PDF 压缩到不那么大?

- (IBAction)generatePdfButtonPressed:(id)sender
{
    pageSize = CGSizeMake(792, 612);
    NSString *fileName = @"Demo.pdf";
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *pdfFileName = [documentsDirectory stringByAppendingPathComponent:fileName];

    [self generatePdfWithFilePath:pdfFileName];
}

- (void) drawText
{
    CGContextRef    currentContext = UIGraphicsGetCurrentContext();
    CGContextSetRGBFillColor(currentContext, 0.0, 0.0, 0.0, 1.0);

    NSString *textToDraw = @"Text goes here";

    UIFont *font = [UIFont systemFontOfSize:22.0];



    CGRect renderingRect = CGRectMake(160, 177.82, 590, 95);

    [textToDraw drawInRect:renderingRect
                  withFont:font
             lineBreakMode:NSLineBreakByWordWrapping
                 alignment:NSTextAlignmentLeft];

}

- (void) drawImage
{
    UIImage * demoImage = [UIImage imageNamed:@"demo.png"];
    [demoImage drawInRect:CGRectMake( 0, 0, 792, 612)];
}

- (void) generatePdfWithFilePath: (NSString *)thefilePath
{
    UIGraphicsBeginPDFContextToFile(thefilePath, CGRectZero, nil);


    BOOL done = NO;
    do
    {

        UIGraphicsBeginPDFPageWithInfo(CGRectMake(0, 0, pageSize.width, pageSize.height), nil);


         [self drawImage];

        [self drawText];


        done = YES;
    }
    while (!done);

    // Close the PDF context and write the contents out.
    UIGraphicsEndPDFContext();

}
4

2 回答 2

0

使包含图像的 PDF 更小的方法是使用该图像的 JPEG 表示。PDF 的大小取决于 JPEG 的压缩程度。我知道这一点不是通过在 iOS 中制作 PDF 而是通过在现实生活中制作 PDF。

这个问题可能对您有所帮助:我可以对 iOS 上生成的 pdf 文件中的图像使用 JPEG 压缩吗?

请注意 ImageIO 框架的使用,以便您可以设置压缩级别。当然,您需要进行试验以获得最佳折衷值。

于 2013-04-15T18:33:47.833 回答
0

pod 'PDFGenerator', '~> 3.1' 做 {

            let data = try PDFGenerator.generated(by: images, dpi: .default)
            
            debugPrint("--DataLengh: \(data.count / 1024)")
            
            if let doc = PDFDocument(data: data) {
                DispatchQueue.main.async {
                    completion(doc)
                }
            }
            
        } catch  {
            print("Func_createPdfFrom: \(error.localizedDescription)")
        }
于 2021-09-28T17:22:51.477 回答