0

我刚刚开始构建一个将显示 PDF 文档的应用程序。我一直在试验、继承 UIView 并使用 Apples 演示中的代码。我有一个 PDF 文档,其中包含 1024 x 748 像素、131 ppi 的图像,因此它应该以横向视图填充 iPad 屏幕。

当我运行该应用程序时,pdf 被缩放到其全尺寸的大约 0.25%,以 iPad 屏幕为中心。为什么 PDF 没有全尺寸显示?

我的自定义 UIView 中的代码:

-(id)initWithFrame:(CGRect)frame PDFName:(NSString *)pdfName
{
    self = [super initWithFrame:frame];
    if(self != nil)
    {
        self.backgroundColor = [UIColor blueColor];
        self.opaque = YES;
        self.clearsContextBeforeDrawing = YES;

        CFURLRef pdfURL = CFBundleCopyResourceURL(CFBundleGetMainBundle(), (CFStringRef)pdfName, NULL, NULL);
        pdf = CGPDFDocumentCreateWithURL((CFURLRef)pdfURL);
        CFRelease(pdfURL);
    }

    return self;
}


- (void)drawRect:(CGRect)rect {

    // PDF page drawing expects a Lower-Left coordinate system, so we flip the coordinate system
    // before we start drawing.
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextTranslateCTM(context, 0.0, self.bounds.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);

    // Grab the first PDF page
    CGPDFPageRef page = CGPDFDocumentGetPage(pdf, 1);

    // We're about to modify the context CTM to draw the PDF page where we want it, so save the graphics state in case we want to do more drawing
    CGContextSaveGState(context);
    // CGPDFPageGetDrawingTransform provides an easy way to get the transform for a PDF page. It will scale down to fit, including any
    // base rotations necessary to display the PDF page correctly. 
    CGAffineTransform pdfTransform = CGPDFPageGetDrawingTransform(page, kCGPDFMediaBox, self.bounds, 0, true);
    // And apply the transform.
    CGContextConcatCTM(context, pdfTransform);
    // Finally, we draw the page and restore the graphics state for further manipulations!
    CGContextDrawPDFPage(context, page);
    CGContextRestoreGState(context);

}
4

1 回答 1

1

答案很简单。将 PDF 中图像的 ppi 更改为 72 ppi(仍为 1024 x 748)。现在它正确地填充了屏幕。我以为我需要匹配 iPad 的像素密度,但我想不是。

杰克

于 2010-08-26T00:00:40.190 回答