Tell me more ×
Graphic Design Stack Exchange is a question and answer site for professional graphic designers and non-designers trying to do their own graphic design. It's 100% free, no registration required.

What is the difference between points and pixels?

share|improve this question

4 Answers

up vote 22 down vote accepted

A pixel is a single square 'picture element' (hence pix-el), i.e. a single dot in your image. A 10x10 image is made up of a set of pixels in a grid 10 wide by 10 high, totaling 100 pixels.

The 'point' (pt) on the other hand is a unit of length, commonly used to measure the height of a font, but technically capable of measuring any length. In applications, 1pt is equal to exactly 1/72th of an inch; in traditional print technically 72pt is 0.996264 inches, although I think you'll be forgiven for rounding it up!

How many pixels = 1pt depends on the resolution of your image. If your image is 72ppi (pixels per inch), then one point will equal exactly one pixel.

share|improve this answer
2  
I would also add that dpi refers to print and ppi to pixel display. If something is 72 ppi in photoshop (or any digital format), it may not be 72 dpi once you print it. – NateDSaint Jan 5 '11 at 19:15
1  
In applications, a point is exactly 1/72 inches. – e100 Jan 5 '11 at 19:20
Well, you learn something every day! Updated the answer following your comments - thanks :) – Paul Russell Jan 5 '11 at 20:52
3  
As a side note, pixels are not always square. If you ever produce pictures for video, note that you can have vertically rectangular pixels or horizontally rectangular pixels. Check out "pixel aspect ratio" for more details. – Sylverdrag Nov 11 '12 at 9:22
"A 10x10 image is made up of a set of pixels in a grid 10 wide by 10 high, totaling 100 pixels." - that is vague. An image 10x10 pixels ... Also " If your image is 72ppi (pixels per inch), then one point will equal exactly one pixel." - when are images ever in ppi? Images are stored in pixels, printed by laying those pixels out with dpi, and screen displays have ppi. – kontur Mar 8 at 8:51
show 4 more comments

A point is a typographic meassure, that means it is a physical meassure of length, like miles, inches, meters or an astronomical unit. Historically, the length of a point varied from different locales and cultures, but with the rise of desktop publishing and internationalisation the following convention has established:

In the late 1980s to the 1990s, the traditional point was supplanted by the desktop publishing point (also called the PostScript point), which was defined as 72 points to the inch (1 point = 1⁄72 inches = 25.4⁄72 mm = 0.3527 mm).

A pixel is the smallest unit of digital image data. That is to say a pixel is without actual physical size. Pixels are used to display an image on screen or print it, converting the image information in pixels to physical representation. Screens have their pixel density measured in ppi (pixels per inch), whereas printed images are measured by dpi (dots per inch) - for both the same amount of image pixels may result in hugely variable physical sizes, e.g., a 100X100 pixel image will be huge displayed on a outdoor advertising screen, or tiny when printed on paper at 300 dpi.

share|improve this answer

In CSS

A pt is 1/72 of an in, and a px is 1/96 of an in.

A px is therefore 0.75 pt [source].

In CSS, everything is somewhat abstracted, so a unit such as a "pt" is not necessarily one point in physical size, especially on a screen, an "in" is not necessarily one inch in size, and so forth. Even a "px" is no longer necessarily one pixel in size anymore: Everything is scaled to be consistent with a hypothetical 96 ppi device viewed at normal reading distance, meaning that on screens that differ significantly from 96 ppi or from normal reading distance, everything will be scaled, but still maintain the same relationships ie a pt will still be 1.33334 px units and still be 1/72 of an in unit.

In print

In print, a point was traditionally somewhere from around 1/67 of an inch to 1/72.5 of an inch.

In digital mediums, it has become a de-facto standard for a point to be exactly 1/72 of an inch nowadays, though there are still alternative measurements in less common use which vary slightly from 1/72, but not by much.

In print, you don't usually measure in pixels, because they are a technical detail about the target printer or device that are not an absolute measurement. For instance, a design may be printed at 125 dpi, 300 dpi or at 1200 dpi and still be the same physical dimensions.

share|improve this answer
While many high resolution, small screened devices or retina display devices scale up pixel measurements for fonts, the scaling factor is really device specific, and usually specified in terms of the ratio of logical pixel:physical pixel in the view port. It's a mess that exists because a lot of people are still specifying sizes in pixel while they should be specifying in device independent units like em. – Lie Ryan Mar 8 at 9:54
That's not true at all. Firstly, unlike absolute units like px, pt, in, etc, em is a relative unit, relative to the size of your font. For many uses it's simply not appropriate. And if your font size is specified in an absolute unit, then em will be related to an absolute unit anyway. It's not a "mess" that absolute units should be scaled on devices with non-standard viewing distances or vastly differing ppi, it's the standard. – thomasrutter Mar 11 at 6:16

Point is a physical unit of length, used in typography. It's equal to 1/12 Pica, and 1 Pica = 1/6 inch. So 1 pt = 1/72 inch.

Therefore, on a 72 ppi display, 1 point = 1 pixel.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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