我在 2835 像素的 UIScrollView 中有一个 2835 像素的 PDF 文件。为了显示 PDF,我使用了 CATiledLayer。
我的问题是当我缩小滚动视图(低于 1 的比例)时,PDF 质量变得非常糟糕。奇怪的是,当我放大滚动视图(比例大于 1)时,PDF 看起来很棒。我放大的越多(比例* 10)质量越好。
如何更改代码以使低档和高档质量都很好?
// Draw the CGPDFPageRef into the layer at the correct scale.
-(void)drawLayer:(CALayer*)layer inContext:(CGContextRef)context
{
// First fill the background with white.
//CGContextSetRGBFillColor(context, 1.0,1.0,1.0,1.0);
CGContextFillRect(context,CGRectMake(0, 0, 2835,1417));
CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
CGContextSaveGState(context);
// Flip the context so that the PDF page is rendered
// right side up.
CGContextTranslateCTM(context, 0.0, 1417);
CGContextScaleCTM(context, 1.0, -1.0);
// Scale the context so that the PDF page is rendered
// at the correct size for the zoom level.
CGContextScaleCTM(context, myScale,myScale);
CGContextDrawPDFPage(context, pdfPage);
CGContextRestoreGState(context);
}