JA EN

Image Resolution Explained - Understanding px, dpi, and ppi

· About 9 min read

What Is Resolution - The Fundamental Concept of Image Detail

Resolution refers to how much detail an image contains. Digital images are composed of tiny dots called pixels, and the density or total count of these dots determines the resolution. Higher resolution means finer detail, while lower resolution results in a coarser appearance.

In everyday usage, the term "resolution" is often used loosely, but technically it can be divided into two types: absolute resolution (total pixel count of an image) and relative resolution (pixel density per unit length). For example, "a 1920x1080 image" describes absolute resolution, while "a 300 dpi image" describes relative resolution.

Understanding this distinction is the first step toward preparing appropriate images for web design and print production. The required resolution varies dramatically depending on the use case - web display typically needs only 72-96 ppi, while commercial printing demands 300 dpi or higher. By properly grasping the concept of resolution, you can avoid creating unnecessarily large files or ending up with blurry images when printing.

px (Pixels) - The Smallest Unit of Digital Images

Pixels (px) are the smallest individual points that make up a digital image. Each pixel holds one color value, and these pixels arranged in a grid form the complete image. A notation like "1920x1080" means 1920 pixels horizontally and 1080 pixels vertically.

Pixels themselves have no inherent physical size. The same 1920x1080 image will have extremely small pixels on a 5-inch smartphone but large ones when projected on a 100-inch screen. This means pixels are relative units whose physical size changes depending on the display device.

More pixels mean more information in the image, but also larger file sizes. Choosing the appropriate pixel count for your intended use is essential for balancing quality and performance.

dpi (Dots Per Inch) - Resolution Units for Printing

dpi (dots per inch) represents the number of ink dots printed per inch. It indicates how finely a printer can place ink and directly affects print quality.

Common dpi guidelines for various print applications:

An important distinction: printer dpi and image dpi are different concepts. Even if a printer has 1200 dpi capability, if the source image only contains 150 dpi worth of information, the print result will only be 150 dpi quality. Conversely, sending a 300 dpi image to a 72 dpi printer won't produce quality beyond the printer's capabilities.

When creating print-ready files, calculate pixel dimensions using finished size × required dpi. For example, printing at A4 size (approximately 8.27 × 11.69 inches) at 300 dpi requires an image of at least 2481 × 3507 pixels.

ppi (Pixels Per Inch) - Resolution Units for Displays

ppi (pixels per inch) represents the number of pixels displayed per inch on a screen. While dpi indicates ink dot density for printing, ppi indicates pixel density on displays - a subtle but important distinction. In practice, dpi and ppi are often used interchangeably, though they are technically different concepts.

Representative display ppi values:

On high-ppi displays, images with the same pixel count appear physically smaller. Therefore, for high-ppi displays (like Retina), you need to provide images with 2-3 times the normal pixel count. This is why srcset attributes and @2x, @3x images are necessary.

In web development, considering the ratio between CSS pixels and device pixels (window.devicePixelRatio) and delivering appropriately resolved images is essential for balancing both performance and visual quality.

dpi vs ppi - Clarifying the Commonly Confused Points

dpi and ppi are frequently confused in everyday usage, but they have clear technical differences. Understanding these differences helps prevent configuration mistakes during image production.

Fundamental differences:

For example, inkjet printers reproduce the color of a single pixel by combining multiple fine CMYK dots. Therefore, a printer may need 1200 dpi or higher capability to print a 300 ppi image accurately.

Practical usage guidelines:

To avoid confusion, use ppi when discussing image data density and dpi when discussing printing device capabilities. However, industry convention frequently uses dpi to mean ppi (as in "300 dpi for print"), so contextual flexibility is also necessary.

Optimal Resolution Settings by Use Case

Here is a comprehensive guide to optimal resolution settings based on intended use. Choosing the right resolution helps balance quality and file size effectively.

Web and social media:

Print production:

Common mistakes and solutions:

The golden rule for resolution settings is to work backward from your final output destination. First confirm the output size and required ppi/dpi, then calculate the necessary pixel dimensions from there.

Related Articles

Creating Retina Display-Ready Images - Achieving Sharp Display on High-DPI Screens

Learn why images appear blurry on Retina and high-DPI displays and how to fix it. Covers srcset attribute, image-set(), SVG usage, and optimal export settings for crisp rendering.

Image Resizing Best Practices - Aspect Ratio and Interpolation Algorithms

Learn about maintaining aspect ratio, choosing interpolation algorithms, and recommended sizes for different use cases when resizing images for web, print, and social media.

Responsive Images Implementation Guide - Complete Guide to srcset, sizes, and picture Elements

Learn how to serve optimal images based on device screen size and resolution with detailed code examples for responsive image implementation.

Photo Printing Preparation Guide - Resolution, Color Space, and Paper Selection

Learn how to prepare images for beautiful photo printing. Covers resolution settings, color space selection, and paper compatibility to avoid common printing mistakes.

Halftone Processing Principles and Printing Applications - How Dot Patterns Work

Explains halftone (dot pattern) processing used in printing. Covers AM screening, FM screening, and digital halftone implementation methods.

Aspect Ratio Guide by Use Case - Choosing Optimal Image Ratios for Print, Web, and Social Media

Learn the optimal aspect ratios for print materials, websites, and social media posts. A practical guide to maximizing image impact through proper crop settings.

Related Terms