Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
1answer
24 views

PPI::Document bug or some special subroutine name?

i have some problems with PPI module: assume i have Foo.pm: package Foo; sub foo0 { 1; } sub foo1 { 1; } sub foo2 { 1; } sub foo3 { 1; } 1; and i want to use PPI to get all the subs: ...
3
votes
1answer
186 views

How do I find a comment with PPI and then insert code before it?

I'm trying to find the comment # VERSION in a perl source file. I then want to insert the version before the comment (or in place of doesn't matter). Could anyone tell me the right way to do this with ...
2
votes
2answers
1k views

Designing for Android - Resolution?

I'm designing an app for android, and the main devices we're targeting are Nexus S and Galaxy Tab, so I wonder which resolution should I design for and what PPI to use? I'd be using photoshop. ...
1
vote
1answer
563 views

Master list of high PPI mobile screens and how to detect/handle it via CSS?

The iPhone 4's Retina display is double the density of of the iPhone 3, but Apple handled it fairly nicely but just making an assumption and doubling the pixels when rendering (so that your web page ...
1
vote
3answers
1k views

iPhone Screen Resolution. 160 vs 163 vs. the future

I'm trying to make an app that displays something in real-world units. It's not a ruler app, but it wants that kind of precision. It already looks like the iPhone and iPod touch have different screen ...
0
votes
2answers
43 views

PDO General Error using Doctine DBAL in PPI Framework

I am receiving a 'HY000 General error' when running a prepared statement to UPDATE a table row. The query seems to run, and the row is updated successfully. My code and the error returned are detailed ...
0
votes
2answers
96 views

The difference in image resolution (ppi) between C# and Photoshop

For example, C # says that the selected image contains 96 ppi, while that same image in Photoshop contains 72 ppi. Why is there a difference? I’m inclined to trust Photoshop in this case, and how ...
0
votes
0answers
65 views

Change PPI (pixel per inches) of PNG file in Android

I have app which is used to edit PNG file (like write text on them). My process is create bitmap from that PNG, use Canvas to draw Text, then use bitmap.compress to save result into SD Card. ...
0
votes
1answer
201 views

ppi for Windows 7 phone and tablets

I am fairly new at windows 7 graphics creation. My understanding is that all Windows phone 7 and Windows tablet graphics should be created at 96 ppi, not 72 like iPhone and android. Is this correct? ...
0
votes
1answer
251 views

Mobile Pixel Density: multiple image size or serve everyone the high-res image?

I'm looking at how to make images look good on android and iphone devices with high pixel density, and I keep running across two ways to do it - one is to have separate stylesheets that serve up ...