答案 0 :(得分:0)
PDF中的页面和图像大小以磅为单位表示。 1点= 1/72英寸。您有图像大小(以像素为单位)。 1像素= 1/96英寸。这使得1像素= 3/4点。因此,当您设置SizeF时,将(宽度,高度)乘以0.75f。
以下代码将满足您的需求:
class AppController : Application() {
init {
instance = this
}
companion object {
private var instance: AppController? = null
fun applicationContext() : AppController {
return instance as AppController
}
}
override fun onCreate() {
super.onCreate()
}
}