CGContextScaleCTM(context,1.85,-1.80);
这次它完全适合屏幕,但这只是一个试验和错误,为什么它不适合iPhone的屏幕,我也正确设置了视图大小.
任何有线索的人请告诉我.
这也是我绘制pdf页面的drawRect方法
voID drawRect:(CGRect)rect{UIGraphicsBeginpdfpage();CGContextRef context = UIGraphicsGetCurrentContext();CGpdfpageRef page = CGpdfdocumentGetPage(pdf,pageNumber);CGContextSaveGState(context);CGContextTranslateCTM(context,1.0,self.frame.size.height);CGContextScaleCTM(context,-1.0); CGContextDrawpdfpage(context,page);CGContextRestoreGState(context);
}
alt text http://www.freeimagehosting.net/uploads/6b8bb69bb9.png
谢谢
解决方法 你会想做点什么CGRect Box = CGpdfpageGetBoxRect(page,kCGpdfMediaBox);CGfloat scale = bounds.size.wIDth / Box.size.wIDth;if (bounds.size.height / Box.size.height < scale) scale = bounds.size.height / Box.size.height;
适应pdf的大小.
总结以上是内存溢出为你收集整理的在iPad中使用PDF全部内容,希望文章能够帮你解决在iPad中使用PDF所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)