如何在Java中获取屏幕DPI?
我正在开发一个需要屏幕DPI的应用程序。我检查了几个论坛,并获得了一个代码段,内容如下:
Dimension screen = java.awt.Toolkit.getDefaultToolkit().getScreenSize();System.out.println("screen width: "+screen.getWidth());
System.out.println("screen height: "+screen.getHeight());
int pixelPerInch=java.awt.Toolkit.getDefaultToolkit().getScreenResolution();
System.out.println("pixelPerInch: "+pixelPerInch);
double height=screen.getHeight()/pixelPerInch;
double width=screen.getWidth()/pixelPerInch;
double x=Math.pow(height,2);
double y=Math.pow(width,2);
但是无论我的屏幕分辨率pixelPerInch
值是多少,该值都保持不变,为96。代码有什么问题?
swt
对于同一件事,我得到了另一个代码,如下所示:
import org.eclipse.swt.graphics.Device; import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class MainClass {
public void run() {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("Display Device");
createContents(shell);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
private void createContents(Shell shell) {
Device device = shell.getDisplay();
System.out.println("getBounds(): "+ device.getBounds());
System.out.println("getClientArea(): "+device.getClientArea());
System.out.println("getDepth(): "+device.getDepth());
System.out.println("getDPI(): "+device.getDPI());
device.setWarnings(true);
System.out.println("Warnings supported: "+device.getWarnings());
}
public static void main(String[] args) {
new MainClass().run();
}
但是再一次,无论我的屏幕分辨率如何,getDPI()
返回的值都是相同的96。怎么了?我的代码是错误的还是我以错误的方式解释了它?
回答:
问题是没有人知道操作系统的确切物理尺寸,甚至连操作系统都没有。您需要知道这一点才能计算PPI。
控制面板中有一个显示设置,用户可以在其中手动指定PPI,默认情况下将其设置为96。
以上是 如何在Java中获取屏幕DPI? 的全部内容, 来源链接: utcz.com/qa/420174.html