Click here to Skip to main content
15,915,864 members
Everything / DPI

DPI

DPI

Great Reads

by Peter Huber SG
WPF design might have been too clever when using DIP (device independent pixels)

Latest Articles

by Peter Huber SG
WPF design might have been too clever when using DIP (device independent pixels)

All Articles

Sort by Score

DPI 

10 May 2023 by Peter Huber SG
WPF design might have been too clever when using DIP (device independent pixels)
9 May 2015 by Richard MacCutchan
A number of suggestions to be considered at https://www.google.com/search?q=dpi+aware+c%23[^].
5 Jun 2015 by neveen neveen
If I have android device with 5 inches diagonal screen size and 2.3 inches screen width and its screen supports 1080*1920 pixels what is the nearest type of its screen density?how can solve this question.
5 Jun 2015 by Afzaal Ahmad Zeeshan
That totally depends on your device's manufacturer, how he has set up the pixels and all other stuff. However, in Android there are some built-in features for supporting different screens[^]. You can add your graphics resources in different folders, and Android would automatically check...
17 Nov 2015 by Wedgwood
There seems to be two ways of changing the text size in Windows 10:1. "set a custom scaling level" - which allows you to set the system to 96-dpi, 120-dpi, etc. My application detects this fine. My 1920x1080 screen is detected as 1920x1080 fine.2. On a screen by screen basis by with...
30 Jul 2018 by Member 13850628
How to Increase DPI of the image file using javascript? I have used Fabric.js canvas and export image using dataurl() method. but it is export in 96 dpi image but I want to 300 dpi. i have base64 string of image. I have created a canvas in angular 6. What I have tried: first, I convert my...
9 May 2015 by dabbourabd
Hi every oneI need to build windows application work on every screen resolutionnow I am using following codepublic Form1() { InitializeComponent(); DPI_test(); }public void DPI_test() { //Specify Here the Resolution...
17 Aug 2015 by JamesHadleyChase
Hi,I have a Winform on which a image is placed. Designed on Win 7 with DPI at 100%.When the same Winform is displayed after changing the DPI to 125% or higher, I observe that the Image is displaced on the Winform.The Winform was possibly Auto scaled due to DPI changes but the Image...
17 Aug 2015 by Ravi Bhavnani
Change your Form's AutoScaleMode to Dpi./ravi