UIScrollView 内的 PDF 缩放

发布于 2024-10-21 12:16:57 字数 1023 浏览 2 评论 0原文

我在 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);

}

I have a 2835 pixel PDF file inside 2835 pixel UIScrollView.
To display the PDF I use CATiledLayer.

My problem is when I zoom out the scrollView (at scale below 1) the PDF quality gets very bad. What is strange that when I zoom in the scrollView (at scale above 1) the PDF looks great.
The more I zoom in (scale*10) the better the quality.

How do I change the code so that both the downscale and upscale quality is good?

// 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);

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-10-28 12:16:57

我将levelsOfDetail和levelsOfDetailBias都设置为10。这将所有缩放都转移到了升级。现在我将levelsOfDetail更改为10,将levelsOfDetailBias更改为7,一切正常。

I was setting both levelsOfDetail and levelsOfDetailBias to 10. This shifted all the zoom to upsaclaing. Now I changed levelsOfDetail to 10 and levelsOfDetailBias to 7 and all works ok.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文