且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

编辑PDF并在UIWebView中显示图像时,缩放比例不合适

更新时间:2023-09-03 14:05:22

您似乎没有为视网膜设备使用适当的比例尺.

It looks like you are not using the appropriate scale for retina devices.

ViewController.m

ViewController.m

CGContextScaleCTM(ctx, 1, -1);

这应该基于设备的规模.

This should be based off the device's scale.

例如(假设y比例值出于某种原因需要为负)

e.g. (Assuming the y scale value needs to be negative for some reason)

CGFloat scale = [[UIScreen mainScreen] scale]; 

CGContextScaleCTM(ctx, scale, -scale);