DPI stands for Dot Per Inch

learn more… | top users | synonyms

1
vote
2answers
27 views

What is the difference between logicalDpiX and physicalDpiX in Qt?

In the documentation of QPaintDevice (which all paintable-to entities derive from, such as QWidget, QPixmap, etc), there are two functions to receive the DPI of the device int logicalDpiX() const; ...
0
votes
0answers
8 views

Dropzonejs issue with resolution of an image

I have an issue with dropezonejs. Apparently, when an image has a resolution more than 72dpi, the thumbnail is not generated and everything stop here. You can try by yourself in the dropzonejs ...
1
vote
1answer
34 views

How can I read the DPI for a JPG file on Android?

Is there a java library that can read the DPI from a jpg file (like pngj for PNG)? This is for code on the Android so I can't use java.awt.image.* And if there's a way to do this with the Android ...
1
vote
1answer
52 views

Big elements on device with high screen density

I have application with elements (buttons, images, ...) in layout. All images are in resources for ldpi, mdpi, ... , xxhdpi. If I run application on tablet 7" (800x480) elements has "correct" size. ...
0
votes
4answers
31 views

Supporting Multiple Screens for hundreds of icons

In my application I have to use hundreds of bitmap icons and we want to support multiple screen. And through the documents at android developer, it seems that it is the only way to create these icons ...
0
votes
1answer
122 views

Android Nexus 7 DPI for Eclipse

The Nexus 7 is that TVDPI, but that is not used in programming apps for it. Eclipse uses the HDPI, LDPI, MDPI, XHDPI, and XXHDPI folders. After my research, I still have found no solid conclusion. ...
0
votes
0answers
26 views

How to remove program name from jpeg meta without changing dpi value?

Is there any way of removing the Program Name under Origin in Details tab from Properties without changing the dpi value? Everything i tried until now changes the dpi from 300 (the value i've saved ...
1
vote
0answers
41 views

Creating a custom DPIClassification in Flex App for new 1920x1080 Devices?

With the introduction of new mobile devices with around 440dpi screens like the Samsung Galaxy S4, I'd like to create a custom DPIClassification of 480 so I can support these devices properly. I ...
2
votes
2answers
54 views

AutoScaling WinForm Display (Small, Medium)

First and foremost, please forgive me but my screenshots are in French due to my Windows installation at work. It is still very easy to understand though. I'll include screenshots to make it more ...
0
votes
0answers
121 views

Delphi, application scaling, Windows 7

Good day everyone. I have a problem with Delphi 7 application being used for Windows 7. It works perfect for older windows like XP, but on Win7 the form is scaled to higher dpi which completely ...
0
votes
0answers
44 views

Java - set DPI to print image

I have a bunch of .jpg images and I want to print them (on paper with ink), at a fixed size (in cm). Let's say image1.png is 400x600 pixels and I want to print it at 300 dpi. I've tried using ...
1
vote
2answers
102 views

matplotlib linewidth when saving a PDF

I have a figure with some fairly delicate features that are sensitive to linewidth. I want to save this figure as a PDF that can be easily printed (i.e. no scaling on the receiver's side, just ...
0
votes
1answer
53 views

Printing XPS document with image. Different image size when set diffirent dpi

I printing XPS document with images, that contains QR-codes. Image creating sample here: Image image = CreatePresentation(qrCode); image.Height = 200; image.Width = 200; ...
0
votes
1answer
44 views

Layout Configurations Android - API Levels

I am struggling to define resources for certain types of screens. The main screens I am focusing on are: Galaxy Ace (320x480 mdpi) Galaxy S2 (480x800 hdpi) My questions are: Can you define a ...
0
votes
1answer
95 views

How can I prevent my Win32 application's UI elements from being scaled up when high DPI is set?

When windows is set to "resize text to "125%", my Win32 application has its UI (but not its window size) scaled up. This causes text strings to be cut off and UI elements to disappear off the edge of ...
0
votes
0answers
40 views

Android Convert Pixels to inchec, millimeter

I want to accurately convert pixels to inches and mm. I had tried to use all the properties of displayMetrics but was unsuccessful in getting the exact physical units in mobile. I also tried to use ...
0
votes
1answer
49 views

converting the coordinates of a 300 dpi image to coordinates of a 72 dpi image

I'm working on a tess4J project and using tess4j, i've gotten the coordinates of words in the image. The only problem is, these are coordinates for a TIFF image. My project involves writing a layer of ...
0
votes
2answers
56 views

Configuration qualifiers for 320x480 Android (Galaxy Ace)

I have an application that I am struggling to make look right on a Galaxy Ace 320*480 mdpi. Using drawable-sw320dp-mdpi seems to effect most of the other screens such as the Galaxy S2 (480*800 hpdi) ...
0
votes
3answers
105 views

Screen sizes of android design in pixels?

As I found in android documentation site, the there are 4 general sizes for android devices screens. but I found the measurements unit in dp. like this : xlarge screens are at least 960dp x 720dp ...
0
votes
1answer
46 views

Centering admob ad with Air/actionscript 3

I have an Air/As3 app with a stage size of 1024x600 px auto scaled to fit a screen of 1280x720 px. When I request an admob ad (using an ANE) the ad width size reported is 320 (Standard Banner) but ...
0
votes
0answers
30 views

How to increase DPI of specific window [closed]

If you have a laptop with a high resolution, you may try to increase the DPI to make everything bigger. Yes, I have changed the DPI to 150%, and almost everything seems well. But some windows still ...
0
votes
1answer
145 views

How to set the dpi of java swing apps on Windows/Linux?

If you have an monitor with a DPI over 150(such as Macbook Pro), you may also find the problem: the font on the java swing app is too small for high dpi monitor, and I cannot change the font size at ...
0
votes
3answers
112 views

Layout for different size screens (Android)

I'm working on an app, it looks great on 7" devices (Nexus and Dell streak 7). I created the images from different densities, so it looks good. However, when I try to run the app on my phone (Samsung ...
0
votes
1answer
158 views

Android ldpi device should use mdpi resource?

I have published an app which have an mdpi, hdpi, xhdpi and xxhdpi image for the app icon. I have received some feedback that on ldpi devices my icon wasn't used and the default one from android is ...
2
votes
1answer
93 views

What is the relevance of DPI in BitmapSource.Create() method?

i read the Wikipedia article on DPI, but it confused me even more... i don't have any DPI information on the image. What DPI should i use with BitmapSource.Create(), is it OK to use a constant ...
1
vote
0answers
138 views

Convert Tiff Image to PDF(600 DPI) [closed]

I am trying to convert a tiff image with 600 DPI to a PDF for my window aplication using c# & itext. I need to pdf of 600 DPi. Input - Image Format: Tiff, Image Dimension: 4800 * 6000, Image ...
0
votes
1answer
36 views

Testing low resolution on a high-res monitor

I do all of my app development (i.e. HTML/CSS in this case) on high-resolution devices--a macbook retina display, and/or a retina-ready 21" mac monitor. However, one of our 2 products is actually ...
0
votes
0answers
18 views

Why SetMapMode calculate the extent in 72dpi?

//automatically become 72dpi.... SetMapMode(hdc, MM_LOENGLISH); //one unit in logical corrdinate map to 0.01 inch MoveToEx(hdc, 100, -100, NULL); ...
1
vote
0answers
119 views

How to accurately measure mouse movement in inches or centimetres for a mouse with a known DPI

I have a Logitech G500 gaming mouse that is running at its full DPI of 5700. I'm trying to write a program in C++ that accurately measures horizontal movement of the mouse in physical units, ie. ...
0
votes
1answer
88 views

“Bitmap too large” when changing my background DPI to 240

My background always look bad in my app on my smartphone, so I searched around and found THIS article, so I created 3 copies of my background (120,160,240) DPI, but now I get this error: 03-16 ...
0
votes
0answers
144 views

XHDPI images size [closed]

Something I don't get. From Android website : images should be generated for each density using the following size scale : mdpi: 1.0 hdpi: 1.5 xhdpi: 2.0 Also from Android website : devices ...
0
votes
1answer
123 views

Change resolution of EMF image files to prevent quality loss in PowerPoint

Exporting .emf (Enhanced Metafile) vector from Illustrator CS5 [and other versions tested] for use in MS office documents such as PowerPoint, can be a right pain. If you export them at a sensible ...
0
votes
1answer
77 views

Mobile web design for various devices

I'm new to developing sites for mobile devices and looking for some insight from those that know more than I do. Since starting this project I have learned that there are a lot of differences between ...
1
vote
1answer
148 views

Print to PDF is different in excel depending on custom DPI

I was called in this morning to work on a tool that I had built in Excel a while back. The tool generates a report and then prints it to a pdf. The problem they called me in for was that for one user ...
0
votes
0answers
107 views

CasperJs screenshots do not appear equal to device

everyone! I was hoping to save some time using CasperJs to open up webpages, take a screenshot in key sizes and then just flip through the screenshots to find any direct errors in our layouts ...
-2
votes
3answers
138 views

How to set a static dpi for android app

I want my app to showing views the same way on any device. I want to determine size in PIXELS. Can I do it? Can I just turn off that dpi resize feature, or set custom dpi for my app?
0
votes
0answers
37 views

Need dpiAware executable to work in Windows XP/2003

I have some Windows Forms applications that need to run on XP/2003/Vista/7/2008/8/2012, and should still look good when the user chooses Large Fonts or a higher DPI. Enabling DPI awareness in the ...
2
votes
3answers
611 views

How to include 10“ and 7” layouts properly

Nexus 7: 7" 1280x800 Galaxy tab 10.1 10" 1280x800 I want my app to run on 7 and 10 inch tablets. As far as I know, I have to include these layout folders in my app: for 7 inch tablets ...
0
votes
0answers
50 views

Cocos2d for Android - pixel positioning

i have a background(1024x768) image loaded and centered on the device screen with cocos2d on android, i'have a problem with sprite positioning over background. My background have a square drawed ...
0
votes
1answer
444 views

Bad dpi on Nexus 7

I'm disappointed of nexus 7. It is absurdly. I have incorrect UI on Nexus 7. I have 10" tablet with mdpi, and my UI is OK. But on 7" nexus 7 all images and texts look very big. I coped images from ...
0
votes
2answers
95 views

Differences dpi for Android and Samsung Ace mobile

Specifications: Samsung Galaxy Ace: LCD TFT / 3.5 inch / 480 x 320 pixels / 164 dpi. but: DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics); ...
0
votes
2answers
528 views

Viewport, target-densitydpi, pixelratio behaviour in chrome/mozilla on galaxy tab/nexus 7

<'meta name="viewport" content="width=device-width initial-scale=1.0, maximum-scale=1.0, target-densitydpi=..., user-scalable=0" />' tested on different devices and browsers. Both tablets have ...
0
votes
0answers
26 views

Windows icons and VS pictures stretched when Windows Display Settings changed

When I set 125% in Windows Display Settings (Windows 7, 8) the window icon become ugly, as well as pictures in Visual Studio 2010 / 2012 File => New => Project window. We have addin for Visual Studio. ...
0
votes
0answers
63 views

Scaling an Image with the Image tiff and x/y resolution

I've got an issue with scaling the tiff images to their original size if just the DPI resolution of the x and y axes are given. Could you please point me to a How-To or explain it? x resolution: ...
1
vote
1answer
49 views

Why would a photoshop design show fonts smaller than in a real browser?

We have been provided with a Photoshop created specification for a website. It gives specific pixel-based panel widths and various font sizes for different items (in points). For example, the text in ...
1
vote
1answer
114 views

Java / Swing how to deal with different screen DPI and density settings?

Hi everyone I've recently come across the problem that now days some monitors have different DPI settings, some monitors are much more dense such as, for example, Apple's Retina displays. How would ...
1
vote
2answers
120 views

Understanding android dimensions

I have two devices the Desire HD (217dpi, 4,3") and the Nexus 7 (216dpi, 7"). I'm actually building the menu and get crazy about the dimensions. I'm using in general dp (Density-independent Pixels). ...
0
votes
1answer
150 views

Windows - read dpi setting of mouse in c++

Is there a way to get the current mouse dpi setting in c++? The problem is that sending a mouse move message to the system will result in a different cursor position depending on the dpi resolution ...
0
votes
0answers
47 views

Creating consistent dimensions betwen Android Browser and Desktop?

I have a web page which works very well on a regular computer, and handles resizing down very well / you can re-size the window to any size you like, and the app is still useful. You can also zoom in ...
0
votes
1answer
111 views

Can I decipher compression and DPI settings of a TIFF image in Window XP?

I have the following (weird) task: I have a set of black-and-white TIFF image files on a Windows XP system. I am not allowed to install any software on that system or access the internet from it. I ...

1 2 3 4 5 8