vote up 1 vote down star

Using GTK, how do I query the current screen's dpi settings?

flag

2 Answers

vote up 3 vote down check

The current accepted answer is for PHPGTK, which feels a bit odd to me. The pure GDK library has this call: gdk_screen_get_resolution(), which sounds like a better match. Haven't worked with it myself, don't know if it's generally reliable.

link|flag
That function returns resolution, or number of pixels. DPI measures the assumed "dots per inch", or density of pixels. Those are two entirely different concepts. – Shmoopty Mar 15 at 20:17
No, it does not, at least not according to the documentation. It returns a single double, which is "a scale factor between points specified in a PangoFontDescription and Cairo units. The default value is 96, meaning that a 10 point font will be 13 units high. (10 * 96. / 72. = 13.3)". – unwind Mar 16 at 10:35
I stand 100% corrected. And baffled by the function name. Thank you, unwind. – Shmoopty Apr 7 at 17:22
vote up 1 vote down

See http://gtk.php.net/manual/en/gdk.gdkscreen.php. You should be able to compute it using the get_height and get_height_mm or with get_width and get_width_mm.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.