我使用IcePdf
(1.8版)将SwingController
集成到JPanel
中,以便在我的应用程序中使用它。由于显示在SwingController
中的页面在 Controller 中的特定位置。
如何获得相对于整个SwingController
的页面坐标(例如,使用PDF坐标,例如,左上角或o左下角),以便获得相对于JPanel
的页面坐标?
我在IcePDf的API中进行了深入的搜索,但是我不知道该怎么做。谢谢。
最佳答案
试试这个
swingController.getDocumentViewController()
.getDocumentView().getViewModel().getPageBounds(0).getLocation();