大小F输入参数格式

时间:2018-04-19 12:35:24

标签: c# .net

你可以帮我搞清楚身高和身高的格式吗?如果手中的输入是像素类型,则SizeF函数需要的宽度。

1 个答案:

答案 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()
        }
    }