使用imageFromPDFWithDocumentRef获取PDF的错误缩略图

时间:2013-09-10 11:09:00

标签: ios objective-c pdf pdf-generation

使用imageFromPDFWithDocumentRef获取PDF格式的封面时,我遇到了一个奇怪的问题。

代码如下。

 - (UIImage *)imageFromPDFWithDocumentRef:(CGPDFDocumentRef)documentRef
{
    CGPDFPageRef pageRef = CGPDFDocumentGetPage(documentRef, 1);
    CGRect pageRect = CGPDFPageGetBoxRect(pageRef, kCGPDFCropBox);

    UIGraphicsBeginImageContext(pageRect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextTranslateCTM(context, CGRectGetMinX(pageRect),CGRectGetMaxY(pageRect));
    CGContextScaleCTM(context, 1, -1);  
    CGContextTranslateCTM(context, -(pageRect.origin.x), -(pageRect.origin.y));

    CGContextSetInterpolationQuality(context, kCGInterpolationLow);
    CGContextSetRenderingIntent(context, kCGRenderingIntentDefault);

    CGContextDrawPDFPage(context, pageRef);

    UIImage *finalImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return finalImage;
}

但有时结果是这样的(“ABC”代表pdf文件的名称)

enter image description here

我的意思是这个。

enter image description here

我想知道是否有人能帮助我,并提前感谢。 :)

1 个答案:

答案 0 :(得分:2)

您的代码不处理页面旋转,这就是某些情况下旋转输出的原因。 替换此代码:

CGContextTranslateCTM(context, CGRectGetMinX(pageRect),CGRectGetMaxY(pageRect));
CGContextScaleCTM(context, 1, -1);  
CGContextTranslateCTM(context, -(pageRect.origin.x), -(pageRect.origin.y));

使用此代码:

switch (rotate) {
    case 0:
        // Translate the origin of the coordinate system at the 
        // bottom left corner of the page rectangle.
        CGContextTranslateCTM(context, 0, cropBox.size.height);
        // Reverse the Y axis to grow from bottom to top.
        CGContextScaleCTM(context, 1, -1);
        break;
    case 90:
        // Reverse the Y axis to grow from bottom to top.
        CGContextScaleCTM(context, 1, -1);
        // Rotate the coordinate system.
        CGContextRotateCTM(context, -M_PI / 2);
        break;
    case 180:
    case -180:
        // Reverse the Y axis to grow from bottom to top.
        CGContextScaleCTM(context, 1, -1);
        // Translate the origin of the coordinate system at the 
        // top right corner of the page rectangle.
        CGContextTranslateCTM(context, cropBox.size.width, 0);
        // Rotate the coordinate system with 180 degrees.
        CGContextRotateCTM(context, M_PI);
        break;
    case 270:
    case -90:
        // Translate the origin of the coordinate system at the 
        // bottom right corner of the page rectangle.
        CGContextTranslateCTM(context, cropBox.size.height, cropBox.size.width);
        // Rotate the coordinate system.
        CGContextRotateCTM(context, M_PI / 2);
        // Reverse the X axis.
        CGContextScaleCTM(context, -1, 1);
        break;
}

在我的代码中,cropBox与代码中的pageRect相同。有关PDF坐标系如何映射到图像/屏幕坐标系的更详细说明,请参阅我的博客上的这篇文章(此代码取自此处):http://ipdfdev.com/2011/03/23/display-a-pdf-page-on-the-iphone-and-ipad/