Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你知道一种方法来获取加载到的 PDF 的纵横比FSPDFViewCtrl吗?我找不到任何合适的方法或属性。
FSPDFViewCtrl
由于纵横比可能因页面而异,因此只能通过将特定页面的宽度除以其高度来获取特定页面的比例:
let ratio = page.getWidth() / page.getHeight()