Apple May Adopt 1704 x 960 Resolution Display for Upcoming iPhone 6

Apple's next generation iPhone 6 may adopt a higher resolution display, jumping from the current iPhone 5s resolution of 1136 x 640 to a sharper 1704 x 960 resolution, reports 9to5Mac. On the rumored 4.7-inch model, this would result in a display with 416 ppi and the same 16:9 ratio of the iPhone 5/5s/5c, while a 5.5-inch model at the same resolution would carry a density of 356 ppi.

iphone6
With Apple's rumored move to larger displays in the iPhone 6, much discussion has been centered around what resolution Apple will use and how any changes would affect developers. Some speculation had suggested Apple might simply maintain the same resolution as on the iPhone 5s, making a seamless transition for developers. This stretch process would, however, drop the pixel density of the display below Apple's criteria for a "Retina" display.

Alternatively, Apple could boost the resolution to maintain or increase the pixel density, although this move would require work from app developers to maintain compatibility with the new devices. KGI Securities analyst Ming-Chi Kuo suggested last month that Apple would maintain the current 326 ppi density, which could be achieved by bumping a 4.7-inch display to 1334 x 750, and we previously explored how that might work.

But according to 9to5Mac, Apple may adopt an even higher-resolution display that triples the base number of pixels of the iPhone screen in both length and width. This "3x" mode would take the base "1x" resolution of 568 x 320 and expand it to 1704 x 960. Using this method, Apple would retain the Retina branding at 416 ppi and keep the current 16:9 ratio of the iPhone 5/5s/5c.

This means that Apple will likely be tripling the aforementioned “base resolution” (568 x 320) of the iPhone screen in both directions, and that the iPhone screen resolution will be scaled with an increase of 150% from the current 2X resolution of 1136 x 640. Of course, Apple tests several different iPhones and display technologies, so it is possible that Apple chooses to take another route for display specifications for the 2014 iPhone upgrade.

Apple has allegedly been testing this 1704 x 960 resolution and while the design specs for the iPhone 6 are undoubtedly complete, it is not known for sure if Apple has elected to proceed with this resolution. Apple may be preparing to launch the 4.7-inch iPhone 6 sometime this fall with a faster A8 processor and improved camera technology.

Tag: 9to5Mac
Related Forum: iPhone

Top Rated Comments

pgiguere1 Avatar
130 months ago
It’s been a year since I started speculating that the iPhone 6 would have an @3x display, and so far a common reaction is always “But Steve Jobs said pixel-doubling was necessary when introducing the iPhone 4!”.

It’s important to understand why @2x made sense to also understand why @3x does:

1) It was an integer scaling multiplier.

Xcode/Cocoa use a “points” system for every possible coordinate/dimension. Those don’t represent pixel values unless you’re using a non-Retina display (@1x). For everything else, the pixel dimensions of elements are found using points * scaling multiplier. For example, an iPhone 5 is seen as being 568x320 points * @2x = 1136x640 pixels.

If you had a floating point scaling multiplier, say @2.5x, you’d end up with floating point pixel dimensions as well. For example, a 85x45 points UI element * @2.5x = 212.5 x 112.5 pixels. Oops, fractions of pixels! Since the screen can’t render those directly, multisampling will be applied to “blend” fractions of pixels (think of anti-aliasing). What it would look like is this (on the right):



You don’t want this blurry mess. Therefore, you don’t want your UI elements to end up with non-integer pixel dimensions. That’s why you want an integer scaling multiplier. In 2010 with the iPhone 4, @2x was chosen in large part because it was the next integer after 1, not because it’s the double. That means @3x would be an equally good scaling multiplier as far as keeping integer pixel dimensions goes.

2) It didn’t require scaling interpolation on older displays

Steve Jobs explained that one pretty clearly at WWDC.



One pixel would become a 2x2 pixel grid. No fancy math had to be done to “scale” older apps on the iPhone 4. But why does this matter? Because scaling interpolations often reduce quality (not for performance reasons, that’s insignificant). Keep in mind however that unlike with the @1x -> @2x transition we had in 2010, this time we’d only have a 50% enlargement rather than 100%.

The thing is, a 50% enlargement with interpolation doesn’t look worse than a 100% enlargement with pixel-doubling, despite the loss of details due to the interpolation.

See those examples I made with bilinear interpolation (iOS’ default interpolation when scaling images):



As you can see, older non-@3x-optimized apps would actually look better on an @3x iPhone than non-@2x-opitmized apps did on an @2x iPhone. Add to this the fact that the screen's pixel density would be higher this time around, and the perceived image quality difference would be even smaller.

Another common comment has been "But shouldn't developers be using AutoLayout constraints, which make apps pretty much resolution-independent? Therefore, who cares about the exact resolution?"

Yes, they should. But the reality is that most apps (even those using AutoLayout) wouldn't magically scale well to a bigger display like it was a responsive website. They would require significant tweaking before they could do that, and I can't see Apple forcing AutoLayout everywhere just yet. That would essentially force developers to redesign/test their app in around a month, unless which their app would probably look like crap on the iPhone 6. Since that's kind of an unrealistic timeframe, it's the consumers that would end up paying in the end. I think Apple will go through a smoother transition than that.

With the recent introduction of Asset Catalogs (https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html) in Xcode, I think it's pretty clear that Apple wants to introduce a new resolution. The fact images are still labeled by "@1x" and "@2x" also leads me to believe they're not ready to drop the points system just yet.
Score: 64 Votes (Like | Disagree)
regkilla Avatar
130 months ago
No 1080p at least? Come on Apple get it together!
Score: 15 Votes (Like | Disagree)
Anti-Lucifer Avatar
130 months ago
Just look at how much space is wasted in the iPad and you'll have the answer.

Ios on ipad is just pathetic waste of screen space it's purely blown up iPhone os. Terrible.
Score: 13 Votes (Like | Disagree)
furi0usbee Avatar
130 months ago
I won't be happy until I have 1000ppi. Anything less than 1000 won't impress me at all. I want *really* crisp.
Score: 10 Votes (Like | Disagree)
sualpine Avatar
130 months ago
Who cares what the resolution is?

All I want to know is how iOS is going to scale up. I don't want a pathetic new row of icons again.
Score: 10 Votes (Like | Disagree)
thasan Avatar
130 months ago
It’s been a year since I started speculating that the iPhone 6 would have an @3x display, and so far a common reaction is always “But Steve Jobs said pixel-doubling was necessary when introducing the iPhone 4!”.

It’s important to understand why @2x made sense to also understand why @3x does:

1) It was an integer scaling multiplier.
......

Yes, they should. But the reality is that most apps (even those using AutoLayout) wouldn't magically scale well to a bigger display like it was a responsive website. They would require significant tweaking before they can do that, and I can't see Apple forcing AutoLayout everywhere just yet. That would essentially force developers to redesign/test their app in around a month, unless which their app would probably look like crap on the iPhone 6. Since that's kind of an unrealistic timeframe, it's the consumers that would end up paying in the end. I think Apple will go through a smoother transition than that.
this is probably one of the most professional comments that i have seen in MR for a very very long time! thank you! :D
Score: 9 Votes (Like | Disagree)

Popular Stories

Apple Silicon AI Optimized Feature Siri

Apple Releases Open Source AI Models That Run On-Device

Wednesday April 24, 2024 3:39 pm PDT by
Apple today released several open source large language models (LLMs) that are designed to run on-device rather than through cloud servers. Called OpenELM (Open-source Efficient Language Models), the LLMs are available on the Hugging Face Hub, a community for sharing AI code. As outlined in a white paper [PDF], there are eight total OpenELM models, four of which were pre-trained using the...
iOS 18 Siri Integrated Feature

iOS 18 Rumored to Add These 10 New Features to Your iPhone

Wednesday April 24, 2024 2:05 pm PDT by
Apple is set to unveil iOS 18 during its WWDC keynote on June 10, so the software update is a little over six weeks away from being announced. Below, we recap rumored features and changes planned for the iPhone with iOS 18. iOS 18 will reportedly be the "biggest" update in the iPhone's history, with new ChatGPT-inspired generative AI features, a more customizable Home Screen, and much more....
maxresdefault

Apple Announces 'Let Loose' Event on May 7 Amid Rumors of New iPads

Tuesday April 23, 2024 7:11 am PDT by
Apple has announced it will be holding a special event on Tuesday, May 7 at 7 a.m. Pacific Time (10 a.m. Eastern Time), with a live stream to be available on Apple.com and on YouTube as usual. The event invitation has a tagline of "Let Loose" and shows an artistic render of an Apple Pencil, suggesting that iPads will be a focus of the event. Subscribe to the MacRumors YouTube channel for more ...
Apple Vision Pro Dual Loop Band Orange Feature 2

Apple Cuts Vision Pro Shipments as Demand Falls 'Sharply Beyond Expectations'

Tuesday April 23, 2024 9:44 am PDT by
Apple has dropped the number of Vision Pro units that it plans to ship in 2024, going from an expected 700 to 800k units to just 400k to 450k units, according to Apple analyst Ming-Chi Kuo. Orders have been scaled back before the Vision Pro has launched in markets outside of the United States, which Kuo says is a sign that demand in the U.S. has "fallen sharply beyond expectations." As a...
iPad And Calculator App Feature 1

Apple Finally Plans to Release a Calculator App for iPad Later This Year

Tuesday April 23, 2024 9:08 am PDT by
Apple is finally planning a Calculator app for the iPad, over 14 years after launching the device, according to a source familiar with the matter. iPadOS 18 will include a built-in Calculator app for all iPad models that are compatible with the software update, which is expected to be unveiled during the opening keynote of Apple's annual developers conference WWDC on June 10. AppleInsider...
macbook pro purple february

Best Buy Introduces Record Low Prices on Apple's M3 MacBook Pro for Members

Thursday April 25, 2024 7:41 am PDT by
Best Buy is discounting a collection of M3 MacBook Pro computers today, this time focusing on the 14-inch version of the laptop. Every deal in this sale requires you to have a My Best Buy Plus or Total membership, although non-members can still get solid second-best prices on these MacBook Pro models. Note: MacRumors is an affiliate partner with Best Buy. When you click a link and make a...