Hey, I need to know active screen DPI on Linux and Mac OS. I think on linux xlib might be useful, but I can't find a way how to get currect DPI. I want this information to get real screen size in inches.
Thanks in advance!
|
|
In X on Linux, call On the Mac, there's almost certainly a more native API to use than X. Mac OS X does not run X Window by default, it has a native windowing environment. |
|||
|
|
|
You can use You can ask a window for its resolution like so:
This will currently give you an
If you really must know the exact resolution (and I'd be interested to know why you think you do), you could create a screen calibration routine and have the user measure a line on-screen with an actual physical ruler. Crude, yes, but it will work. |
|||||
|
|
I cobbled this together from xdpyinfo... Compile with: gcc -Wall -o getdpi getdpi.c -lX11
|
|||
|
|