屏幕的返回宽度分别以像素为单位,QScreen::width()QScreen::deviceWidth()之间是否有区别?

这些功能中每种功能的合适使用场景是什么?

最佳答案

QScreen::deviceWidth()返回物理宽度,而QScreen::width()返回逻辑宽度。 Qt文档中有关物理/逻辑DPI的注释(DPI直接与宽度和高度有关):

关于c++ - QScreen::width()和QScreen::deviceWidth(),QScreen::height()和QScreen::deviceHeight()之间的区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26376168/

10-11 00:00