Tagged Questions
The highdpi tag has no wiki summary.
16
votes
2answers
6k views
How do I get the WVGA Android browser to stop scaling my images?
I'm designing an HTML page for display in Android browsers. Consider this simple example page:
<html>
<head><title>Simple!</title>
</head>
<body>
<p><img ...
15
votes
4answers
2k views
How to create a high quality icon for my Windows application?
If you are running Windows with a higher DPI setting you will notice that most application icons on the desktop look terrible. Even high profile application icons such as Google Chrome look terrible ...
14
votes
1answer
4k views
.NET 2.0 WinForm: Supporting DPI and Default Font Changes
So I'm trying to figure out how the Form's AutoScaleMode property can possibly help to support a system with a font or DPI that is different from my work development machine.
From the SDK:
...
5
votes
4answers
1k views
Troubleshooting DPI Virtualization and DPI-aware applications, in Windows Vista and Windows 7
I have a problem where an application (written in Delphi) is behaving properly at default 96 DPI settings on all systems, but is behaving inconsistently at the "150% text size" (internally 144 dpi) ...
4
votes
4answers
2k views
how to differentiate the 480X800 and 480X854 screens in android?
how to differentiate the 480X800 and 480X854 screens. we have an option to put the one image at the hdpi folder.in my case 480X800 image is does not support for the 480X854 image. it shows a blank ...
2
votes
3answers
342 views
How to prevent WPF from scaling with the Windows font size options?
I don't want my WPF GUI to scale with Windows font size options (DPI). It's not just a matter of specifying a fixed font size on the UserControl because scaling affects images and borders in the ...
2
votes
1answer
571 views
Determine windows DPI settings programmatically?
we've got a problem with one of our non dpi aware MFC applications.
If you change the system setting to high dpi (e.g. 120 or 144 dpi), the application icon on the taskbar looks screwed up. ...
2
votes
1answer
463 views
Debug .NET WinForms applications under 120dpi
I currently use a VMware virtual machine (Windows XP) to debug my .NET WinForms applications under 120dpi. Very annoying.
Does anybody know a way that gives me similar results under my 96dpi working ...
1
vote
5answers
840 views
Windows: How to test UI under high-dpi?
i want to test how my application reacts to high-dpi settings. i don't just mean 120dpi. i want to test higher dpi settings, such as:
150dpi
300dpi
600dpi
1000dpi
1200dpi
My development machine's ...
0
votes
1answer
137 views
wpf bind property to resize bmp in hight dpi
Having to display bitmap images - not vector at several user's dpi settings in a XBAP WPF application, I'd like to setup a dpiFactor global variable at startup, that will be calculated as a percentage ...
0
votes
2answers
3k views
.NET WinForms: Graphics.MeasureString returns different values than Win32 GetTextExtent
i've been trying to find a method in C# to measure the size of a string. The standard method to measure a string in Win32 is to use GetTextExtent. The real goal is to find the average width and height ...