Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does Google Chrome emulator show iPhone 6 at 375x667 resolution?

Tags:

ios

image

screen

I'm trying to programmatically adapt my website's image sizes for differently sized devices. But now I am having trouble telling what sizes I actually need. In Google Chrome emulator, I'm seeing some of my images upsized, e.g. on iPhone 6 from 230x230 natural to 357x357 displayed. The image takes up nearly the entire width of the emulated screen, and looks just slightly degraded, suggesting iPhone 6's width isn't much larger than 357 pixels.

But Apple says the iPhone 6 has a resolution of 750x1334! If that were true, the image should look much worse, I would think.

I've found some contradictory information on iPhone 4 as well.

This site talks about iPhone 4 at 640x960 pixels. Chrome emulator again shows it at half those dimensions, 320x480.

This stackoverflow question says that "the iPhone screen is 320x480 definitely."

What am I missing here? Why do some sources (including Apple) supply dimensions that are twice what Chrome emulator (and my images) say?

like image 641
Buttle Butkus Avatar asked Jun 03 '15 03:06

Buttle Butkus


People also ask

How do I change screen resolution on iPhone 6?

In case you want to enter custom resolution you have to do it manually, by going to Settings> Upscale in the lower section, you can enter your custom resolution in the “x” and “y” sections.

Can iPhone 6 install Chrome?

Chrome is available for: iPad, iPhone, and iPod Touch. iOS 12 and up. All languages supported by the App Store.

How do I make Google normal size on iPhone?

Double-tap with three fingers. Tap Settings > General > Accessibility > Zoom then toggle Zoom off. If the zoom is fullscreen and excessive, might be difficult to get at the controls.


1 Answers

Relax, you're about to understand this mess. Just notice that 2 * 375x667 = 750x1334.

A pixel is not a pixel

The key thing is: one device pixel is different from one CSS pixel.

They are the same in low pixel density devices like your computer screen (96 dpi). However, high pixel density devices like smartphones and printers (upwards of 160 dpi) try to obey the general W3C CSS3 spec understanding that one CSS pixel should always be close to 1/96th of an inch (or 0.26 mm) when viewed from usual distance (arm's length).

They don't obey the spec to the letter, since that would imply 1px being exactly 1/96th of one real inch in high DPI settings, which wasn't ever implemented in any browser AFAIK. However, they try to make their CSS pixels not so minuscule despite very high pixel densities by making one CSS pixel equal to two or more device pixels.

Chrome Device Mode works with CSS pixels, which is what you should use to design text, navbars, headings etc, but not high-resolution images. For these, read the next section.

If you didn't notice, the image above shows that Chrome Device Mode does show you the device scale (how many device pixels equal one CSS pixel).

Fixing image resolution

As you already know, this affects images negatively, since the browser scales the image as well. Your 230x230 CSS pixels picture becomes 460x460 device pixels, using the same quality. To fix that, use the srcset attribute to give the browser links to different resolution files of the same image.

Example (adapted from the link above):

<img src="wolf-400.jpg" srcset="wolf-400.jpg 400w, wolf-800.jpg 800w, wolf-1600.jpg 1600w"> 

An iPhone 6 will look at that and think "oh, I pretend to be 375px wide but I'm actually 750px, so I'll download wolf-800.jpg."

Just don't forget to use src="" for compatibility. Also, unless you use sizes="", the browser will default to the full width of the device.

like image 165
André Chalella Avatar answered Nov 09 '22 13:11

André Chalella