在VFR-Reader中,我在顶部和底部,和/或左右边缘看到白线,这对于整页照片非常烦人.
它们出现在ThumbsVIEwController中的渲染页面和页面缩略图中:
放大时白线变大(略大):
(底边,虽然很难看到白页背景)
我可以通过修改来改变颜色
CGContextSetRGBFillcolor(context,1.0f,1.0f); // White
在ReaderContentPage.m / drawLayer中.
我天真地尝试将RGBFillcolor设置为黑色,但是pdf中的所有文本页面(通常在白色背景上)也会显示为全黑.
我认为问题在于某些宽高比/ pdf页面尺寸,由于某种原因,它不能完美地填充绘图区域,因此白色背景颜色“流血”.
pdf本身看起来很好,它们在Safari和GoodReader中完美呈现(没有白线).
我很感激任何暗示如何解决这个问题,或者我应该调查的总体方向.
解决方法 VFR的作者通过电子邮件回复了我:“I SUSPECT that it is caused by the pdf page size not exactly matching
the size of the CATiledLayer-backed UVIEw that shows the page. When
the pdf page is rendered by iOS,it does an aspect fit,thus leaving
white borders. In ReaderContentPage.m,in the -drawLayer:inContext:
method,try changing true to false in this function call:
CGpdfpageGetDrawingtransform(_pdfpageRef,kCGPdfcropBox,self.bounds,
0,true)”
这确实解决了这个问题!
(为了修复缩略图,我修改了ReaderThumbRender.m中的同一行)
总结以上是内存溢出为你收集整理的ios – 在顶部/底部,左/右边缘上使用白线进行PDF渲染全部内容,希望文章能够帮你解决ios – 在顶部/底部,左/右边缘上使用白线进行PDF渲染所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)