Tagged Questions
DPI stands for Dot Per Inch
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:
...
12
votes
4answers
3k views
WPF: How to specify units in Dialog Units?
i'm trying to figure out how to layout a simple dialog in WPF using the proper dialog units (DLUs).
What's a dialog unit?
A dialog is a unit of measure based on the user's preferred font ...
11
votes
4answers
480 views
Force DPI for testing in WPF
Is there any way to trick a WPF application into thinking that it is running at a certain DPI?
I'd like to test my program at various DPI levels (96, 120, 144, 192) without changing the system ...
10
votes
2answers
5k views
How to control the font DPI in .NET WinForms app
I created an app for a small business. Some of the employees in the office can not see the form correctly. The reason is they have their DPI setting set to above 96dpi. Does anybody know of a way to ...
8
votes
6answers
3k views
Programmatically determine DPI via the browser?
I would like to programmaticaly determine the DPI of a user's display in order to show a web page at a precise number of units (centimeters/inches). I know it a weird request: it's for a visualization ...
8
votes
6answers
3k views
Delphi: Handling user's font preference
I've come up with the call that gets the user's UI font preference (as
opposed to Borland's hard-coded choice of "MS Sans Serif").
Let's pretend the user's font preference is:
Segoe Print, 15pt
I ...
8
votes
3answers
6k views
C# WPF resolution independancy?
I am developing a map control in WPF with C#. I am using a canvas control e.g. 400 x 200 which is assigned a map area of e.g. 2,000m x 1,000m.
The scale of the map would be: canvas_size_in_meters / ...
7
votes
1answer
936 views
How to “correctly” detect DPI of display with Java?
I have the following app that draws a rule :
public class Rule extends JComponent
{
public static final long serialVersionUID=26362862L;
// public static final int ...
7
votes
4answers
2k views
How do I convert a WPF size to physical pixels?
What's the best way to convert a WPF (resolution-independent) width and height to physical screen pixels?
I'm showing WPF content in a WinForms Form (via ElementHost) and trying to work out some ...
7
votes
2answers
10k views
C# Scaling UserControl content to match users Dpi/Font Size
How do I get my OwnerDrawn UserControl to respect the users dpi (96/120/xxx) and/or font-size (normal, large, extra large)?
Some people suggest to use the DpiX and DpiY properties on a Graphics ...
7
votes
8answers
3k views
Detecting the system DPI/PPI from JS/CSS?
I'm working on a kind of unique app which needs to generate images at specific resolutions according to the device they are displayed on. So the output is different on a regular Windows browser ...
7
votes
2answers
5k views
Write dpi metadata to a jpeg image in Java
I am trying to programatically set the dpi metadata of an jpeg image in Java. The source of the image is a scanner, so I get the horizontal/vertical resolution from TWAIN, along with the image raw ...
6
votes
2answers
5k views
Problems wih minSdkVersion 1.5
we have a problem related to the manifest file and the property "android:minSdkVersion".
The issue is: If our platform is 2.0 and we use the property "android:minSdkVersion=3" (3 = sdk 1.5) the ...
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) ...
5
votes
1answer
236 views
How to get the DPI of the printer in WPF
I have a WPF application with a custom control. The custom control renders itself to a bitmap and I am able to use the following code to figure out what resolution to use so that the bitmap matches ...
5
votes
1answer
1k views
How does one support custom Desktop DPI settings in Delphi 7 applications?
We have a few legacy applications that were written in Delphi 7. We've had a few requests over the years to support custom desktop dpi settings in these applications but we have been able to dodge the ...
5
votes
8answers
12k views
Pixel to Centimeter?
I just want to know if the pixel unit is something that doesn't change, and if we can convert from pixels to let's say centimeters ?
5
votes
4answers
5k views
Can you access screen display’s DPI settings in a Javascript function?
Is there a way to access the screen display's DPI settings in a Javascript function?
I am trying to position a html panel on the page and when the user's DPI is set to large (120), it throws the ...
4
votes
4answers
150 views
Visual Studio 2010 looks “zoomed in”
Today, I installed Visual Studio 2010 Professional on a new laptop with a fresh Windows 7 Ultimate 64-bit install. I, being quite used to the look of Visual Studio 2010, instantly spotted that ...
4
votes
6answers
1k views
How to take a 300 DPI screenshot of a web page
Ok, dumb question, the images on the page are all 72, so you can't have 300. But... what's the best way to print in as high resolution as possible on a brochure?
4
votes
6answers
2k views
Can pdflatex (or any tex package) automatically rescale included images which have been reduced in size?
I'm writing my thesis in LaTeX, generating it with pdflatex. I have a large number of figures, many of which are bitmaps (as opposed to SVG) in PNG/JPEG format. I've generally created them to be ...
4
votes
1answer
3k views
How to calculate the correct image size in out pdf using itextsharp?
I' am trying to add an image to a pdf using itextsharp, regardless of the image size it always appears to be mapped to a different greater size inside the pdf ?
The image I add is 624x500 pixel ...
3
votes
2answers
443 views
How do I detect if the user's font (DPI) is set to small, large, or something else?
I need to find out if the user's screen is set to normal 96 dpi (small size), large 120 dpi fonts, or something else. How do I do that in VB.NET (preferred) or C#?
3
votes
1answer
95 views
Having Trouble Recalculate Width Of RichTextBox Control
I am creating this program that requires the recalculation of a RichTextBox control's width. The problem is that it keeps recalculating wrong. I used the correct formulas to convert point to inches, ...
3
votes
5answers
2k views
Creating a DPI-Aware Application
I have a form application in c#, when I change the monitor's Dpi, all the controls move.
I used this code this.AutoScaleMode = AutoScaleMode.Dpi, but it didnt avoid the problem.
Does anyone have an ...
3
votes
1answer
245 views
DPI not scaling properly
I created a custom UserControl that functions much like a numbericUpDown but with various enhancements. For example, it can display fractions. However, this control does not scale as well as some of ...
3
votes
1answer
249 views
Win32: Displaying a Stock Icon in a Dialog Box under High DPI
I've got a dialog box where I need to display the standard Information icon. Here's my RC code:
ICON "",IDC_ICON_INFORMATION,18,70,21,20
I process the WM_INITDIALOG message as follows:
HICON ...
3
votes
2answers
497 views
Is it possible to detect DPI in iPhone OS, or Android?
I'm doing some research on making a game that will be able to scale its graphical resources to suit the DPI of whatever device it's on.
In order to do this, I would like to be able to query the DPI ...
3
votes
5answers
2k views
HTML/CSS: What should I use to define image height/width to make it resolution independent?
I've read all over the Internet that I should not define fonts (or anything) with absolute pixel height/width/size and instead, use EM ... so that on higher resolution displays, my web site can scale ...
3
votes
2answers
1k views
3
votes
2answers
302 views
Controls Are cut in MFC when changing display to 125% in windows 7
I have an MFC application. When running it on Windows 7 I realized that when changing the display percentage to meduium - 125%, I have a TextControl which is cut off (end of sentence doesn't appear.)
...
3
votes
0answers
772 views
SIlverlight 3 out-of-browser high DPI window size problem
My Silverlight 3 application looks perfect in and out-of-browser with DPI setting in Windows XP set to Normal size (96 DPI). After changing DPI settings to Large size (120 DPI) the application looks ...
3
votes
5answers
3k views
Is the number of Pixels per Inch standard on all Windows PC displays? (LogPixelsX) in the GetDeviceCaps WinAPI call
By Windows PC displays, I am not referring to Windows CE, or handhelds, etc.
Clarification
Some folks below mistakenly thought I was asking what the DPI (dots per inch) was on monitors. What I'm ...
3
votes
4answers
479 views
Do you test on high-res screens and with non-standard/high contrast colour schemes?
I use a non-default Windows colour scheme on most of my machines, and have a laptop with a 124 DPI screen, which Windows is set to.
A lot of programs I tested or even use daily seem to have problems ...
2
votes
2answers
239 views
How to obtain the exact dpi value of android device?
we can use DisplayMetrics.densityDpi to obtain a approximate dpi value of the device,but i eager to know how to obtain the exact dpi value?
2
votes
3answers
125 views
Question on Silverlight's Unit of Measurements
I want to build a small Silverlight application that will save a Canvas (and it's child objects) as a high-resolution JPG or PNG.
I'm not understanding how to work with the units in silverlight since ...
2
votes
2answers
269 views
Why are my dialog boxes too small on some (but not all) Windows7 computers?
I'm starting to test a Winforms (using VS2008) app on Windows 7, and am seeing a strange problem.
It ran fine on the first couple of Win7 installations, but on the next two, many of my dialogs are ...
2
votes
1answer
1k views
How do I convert ppi into dpi for Android images?
I have started making graphics for my Android app using Adobe Photoshop. But I am unable to proceed, as the resolution in Photoshop is set in pixels per inch where as the official Google documentation ...
2
votes
3answers
215 views
How to scale font sizes based on current DPI settings in VC++/MFC applications?
How to scale font sizes based on current DPI settings in VC++/MFC applications ?
As of now when I change the DPI from 100% yo 150% the font sizes remain the same, although the icons will scale down ...
2
votes
2answers
414 views
WPF high dpi issues
I created a simple web browser WPF test application with pictures and text within a canvas, with windows set at 96dpi.
Then I switched to 120 dpi and :-((( Display is messy, image size changed and ...
2
votes
1answer
283 views
How to Check Photo DPI with PHP
Is there a possible way to check photo dpi with php. I have 300 dpi and 72 dpi photos. but wants a way to calculate dpi automatically.
2
votes
1answer
265 views
DPI changes in JAI.create… Why?
In the following code my source image has dpi of 600 but the result image will have dpi of 96, why?
RenderedOp source = JAI.create("fileload", "img/1.jpg");
FileOutputStream outputStream = new ...
2
votes
3answers
337 views
Strange behavior in Windows Forms application running at different DPI settings
I have a Windows Forms application (written in vs2010/C# against .NET framework 3.5) with one main form. It was designed at Win7's 100% DPI setting (I believe that's 96 dpi). When switching the ...
2
votes
1answer
919 views
Calculate pixels based on DPI and Physical Size
I'm trying to make an Evolus Pencil template for Android. My device has a 1.75x2.5625" screen, and I would like to emulate these exact physical dimensions. From reading this post:
Android multiple ...
2
votes
2answers
2k views
Android Resources - which resolutions should go into the hdpi, ldpi, mdpi and xhdpi directories
I'm trying to write an application that will work well on all screen sizes, for that I have my graphic designer produce images that are in the requested dpis for each directory (Low density (120), ...
2
votes
3answers
2k views
DPI Graphics Screen Resolution Pixels WinForm PrintPageEventArgs
How do Dpi Points relate to Pixels for any display my application is running on?
int points;
Screen primary;
public Form1() {
InitializeComponent();
points = -1;
primary = null;
}
void ...
2
votes
1answer
176 views
Visual Studio and DPI issue
I am developing a Windows Forms application using VS2008 on Windows Vista. I tried to run my application on Windows XP the other day, and everything on GUI was messed up. I realized that I developed ...
2
votes
3answers
510 views
How would you calculate the point size of a font necessary to best fit a predefined area?
I have an interesting problem. I'm almost there but am curious how others would tackle it. I want to display some multi-line text in a predefined area. I don't know what the text will be or how big ...
2
votes
1answer
573 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
2answers
427 views
hdpi assets no longer loading
Hey. all,
I'm in the process of up-scaling the graphics for my game for better display on higher density devices. I created the higher dpi artwork, added it to the correct place ...