1

注釈付きのPDFがあり、それを画像に変換したいと思います。PDFは正常に画像に変換されていますが、変換に注釈がありません。

これはコードです:

NSPDFImageRep *img = [NSPDFImageRep imageRepWithContentsOfFile:PdfFilePath];
NSFileManager *fileManager = [NSFileManager defaultManager];

[img setCurrentPage:0];

NSImage *temp = [[NSImage alloc] init]; 
[temp addRepresentation:img]; 
NSBitmapImageRep *rep = [NSBitmapImageRep imageRepWithData:[temp TIFFRepresentation]]; 
NSData *finalData = [rep representationUsingType:NSJPEGFileType properties:nil]; 
NSString *pageName = [NSString stringWithFormat:@"Page1_%d.jpeg", 0]; 
NSString *imgFilePath = [NSString stringWithFormat:@"%@/%@",@"/Users/Desktop/PDFImages", pageName];
[fileManager createFileAtPath:imgFilePath contents:finalData attributes:nil];

注釈付きのPDFを画像に保存する別の方法はありますか?

4

1 に答える 1

0

この問題は、画像のロックおよびロック解除機能を使用して解決されます。

     NSSize     pageBounds1;
    pageBounds1 = [page1 boundsForBox: [_pdfView displayBox]].size;
    NSImage *temp = [[NSImage alloc] initWithSize:pageBounds1];

    [temp lockFocus];
    [page1 drawWithBox:kPDFDisplayBoxMediaBox];
    [temp unlockFocus];

    NSBitmapImageRep *rep = [NSBitmapImageRep imageRepWithData:[temp TIFFRepresentation]]; 
    NSData *finalData = [rep representationUsingType:NSJPEGFileType properties:nil]; 
    NSString *pageName = [NSString stringWithFormat:@"Page1_%d.jpg", pageIndex]; 
    NSString *imgFilePath = [NSString stringWithFormat:@"%@/%@",pathForImages, pageName];
    [fileManager createFileAtPath:imgFilePath contents:finalData attributes:nil];
于 2012-06-19T05:18:28.023 に答える