up vote 5 down vote favorite
3
share [g+] share [fb]

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 ?

link|improve this question
feedback

8 Answers

Converting pixels to centimeters depends on the DPI (dots per inch) of the media displaying the image, i.e. monitor, laser printer, etc.

http://wiki.answers.com/Q/How%5Fdo%5Fyou%5Fconvert%5Fpixels%5Finto%5Fcentimeters

link|improve this answer
I bet you'd get bonus points if you came up with the actual equation :) – Allen Aug 27 '09 at 16:25
inches = ( pixels * dpi / (inches per cm) ) ? – willoller Aug 27 '09 at 16:42
Oop better give the rep to Mark Ransom since he did it 40 mins ago! – willoller Aug 27 '09 at 16:44
lol I gave ya both rep, tho I think my answer is sexier :) – Allen Aug 27 '09 at 16:50
feedback

Similar to this question which asks about points instead of centimeters. There are 72 points per inch and there are 2.54 centimeters per inch, so just substitute 2.54 for 72 in the answer to that question. I'll quote and correct my answer here:

There are 2.54 centimeters per inch; if it is sufficient to assume 96 pixels per inch, the formula is rather simple:

centimeters = pixels * 2.54 / 96

There is a way to get the configured pixels per inch of your display for Microsoft Windows called GetDeviceCaps. Microsoft has a guide called "Developing DPI-Aware Applications", look for the section "Creating DPI-Aware Fonts".

link|improve this answer
feedback

No, different mediums & monitors have different pixel density.

For instance a desktop monitor may have 75 pixels per inch whereas a print may be outputted at 300.

Here is a list of displays by pixel density

link|improve this answer
feedback

I'm going to go out on a limb and just guess that you want to be able to display things to the user on their monitor, scaled to be very close to its real life size.

IF this is the case, I would recommend either displaying your items next to real life items (credit cards, dollar bills, pop cans, etc) or even better, allow the user to hold something up to the screen like a credit card or dollar bill or ruler. You could then have them scale a slider or something similar to meet the width or height of that object.

By holding a credit card, something with a relatively known height and width, up to the screen, you can easily determine the ratio of pixels to inches and use that to your hearts content.

Wiki says

Most credit cards are issued by local banks or credit unions, and are the shape and size specified by the ISO/IEC 7810 standard as ID-1 (85.60 × 53.98 mm)

Using mspaint, a credit card of mine is exactly 212 pixels tall, thats 53.98mm / 212 pixels = 3.92 pixels per mm. Multiply by 10 and that's 39.2 pixels per cm.

You could EASILY do that programatically via javascript, C#, flash, whatever you want.

link|improve this answer
1  
That is sexier, and useful in real life. – willoller Aug 27 '09 at 16:54
heh, thanks, I may even make a jquery plugin that does this if one doesn't already exist – Allen Aug 27 '09 at 16:56
feedback

You can convert from pixels to centimeters, but it's not a consistent conversion. It will depend on the size and resolution of the display device in question. The definition of a pixel will not change, but the size of a pixel will vary on different display devices.

link|improve this answer
feedback

The size of pixels change depending on the display device.

The following "found" code uses api calls to determine pixel density Get screen DPI in .NET

("Found" as in I googled it but haven't tried it)

link|improve this answer
feedback

As far as I understand it, a PIXEL is:

Picture Element

thus it depends on two things:

(a) Resolution (b) Physical Screen size

Thus if you divide screen size by resolution, this should give you CM per Pixel.

link|improve this answer
feedback

My screen is 28.5cm x 22cm.

It can run at different resolutions: 800x600, 1024x768, 1280x1024, 1400x1050.

I understand monitors come in different sizes, from iPod-size to wall-size.

So those pixel manufacturers must be pretty smart, making them out of rubber like that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.