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 ?
|
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 |
|||||||||
|
|
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:
|
|||
|
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
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.
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. |
|||||||
|
|
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) |
|||
|
|
|
As far as I understand it, a PIXEL is:
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. |
||||
|
|
