Skip to main content

iPhone 12 vs iPhone 11 :The biggest changes

The iPhone 12 has launched with some serious upgrades over the iPhone 11. For starters, there are four iPhone 12 models, compared to three for the iPhone 11. And Apple has embraced 5G connectivity across the board and is offering OLED screens on each one of them.


But those aren’t the only differences you should know about. There's also a new design on the iPhone 12 and a powerful LiDAR sensor on the Pro variants. And the prices for the new iPhones are surprisingly reasonable, too.
  • Best iPhone 12 pre-order deals
  • iPhone 12 Pro and iPhone 12 Pro Max: Everything you need to know
  • Just in: Top 5 Prime Day 2 deals right now
Here’s our iPhone 12 vs iPhone 11 preview comparison that breaks down all the biggest changes.

As you step up to the Pro phones, the iPhone 12 Pro also comes in two sizes: 6.1 inches for the iPhone 12 Pro and 6.7 inches for the iPhone 12 Pro Max. The iPhone 11 Pro and iPhone 11 Pro Max are 5.8 inches and 6.7 inches, respectively. Overall, Apple's new iPhone 12 lineup offers more choice than the iPhone 11 roster did.

iPhone 12 vs iPhone 11: Prices



The iPhone 12 mini is the cheapest of the line, starting at $699. The regular iPhone 12 costs $799. Both come with 64GB of storage standard; 128GB costs an extra $50, while 256GB costs an additional $150.

The iPhone 12 Pro and Pro Max start with 128GB of storage and cost exactly what the iPhone 11 Pro and Pro Max do: $999 for the smaller model, and $1,099 for the larger one.

In keeping with tradition, Apple is retiring the 11 Pro range while preserving the standard iPhone 11 on the market. That device used to cost $699; it now starts at $599.

iPhone 12 vs iPhone 11: Design



The iPhone 12 line has gotten quite the makeover, thanks to flatter sides instead of the iPhone 11's rounded design. This makes Apple's latest handsets draw a familial resemblance to the iPad Pro 2020.

Unfortunately, rumors of a slimmer notch have not come to pass; the iPhone 12's cutout for its TrueDepth camera and earpiece appears roughly the same size as it always has. However, Apple has trimmed the bezel around the Super Retina XDR displays in all iPhone 12 models, resulting in a slightly more expansive screen-to-body ratio. According to Apple's measurements, the 6.1-inch iPhone 12 is 11% thinner, 15% smaller and 16% lighter than the 6.1-inch iPhone 11.

The iPhone 12 and 12 mini come in five colors (black, white, Product Red, blue and green), while the iPhone 12 Pro and Pro Max come in four (graphite, silver, gold and Pacific Blue).

iPhone 12 vs iPhone 11: Display



All four iPhone 12 models will feature Super Retina XDR OLED displays like the iPhone 11 Pro, while the iPhone 11 offered an LCD screen. There are several benefits of OLED vs LCD, including deeper blacks, more vibrant colors and wider viewing angles. Overall, the switch to OLED represents probably the biggest improvement or positive difference an iPhone 11 user is likely to appreciate in moving to an iPhone 12.

Interestingly, Apple wasn't able to deliver 120Hz refresh rates on its Pro-series models with the iPhone 12, as it had been rumored to do in the months leading up to launch. Battery concerns were reportedly the culprit for the omission, which certainly makes sense given that all iPhone 12 models support millimeter-wave 5G, which can be pretty power hungry.

iPhone 12 vs iPhone 11: Specs and performance




The whole iPhone 12 line Apple's new A14 Bionic processor, which promises MacBook Pro-like performance based on leaked benchmarks. This is Apple's first 5nm chip, compared to 7nm for the A13 Bionic, which should result in better efficiency as well.

The A14 Bionic chip, made by TSMC, promises 15% faster performance while using 30% less power. And that's before Apple does its own optimizations. During Apple's iPhone 12 reveal event, the company quoted 50% faster GPU and CPU performance compared to the A13 Bionic, which even exceeds the 40% improvement some leaks had claimed.

Apple never lists the RAM of its phones, but the iPhone 11 and iPhone 11 Pro reportedly feature 4GB of RAM. A report from UBS analysts picked up by MacRumors says that the iPhone 12 will have 4GB of RAM while the iPhone 12 Pro lineup will get 6GB, though of course we won't know for sure until tear downs are published.

iPhone 12 vs iPhone 11: Cameras and LiDAR scanner




The iPhone 11 and iPhone 11 Pro proved to be among the best camera phones on the market, thanks to their great Night Mode and next-generation Smart HDR. The iPhone 11 featured a standard wide and ultra-wide lens, while the iPhone 11 Pro series added a telephoto zoom.

For the iPhone 12, the regular 5.4-inch iPhone 12 and 6.1-inch iPhone 12 are slated to offer two lenses once more, and the iPhone 12 Pro and iPhone 12 Pro Max have three cameras plus a new LiDAR scanner.

This advanced time-of-flight sensor, which is already on the iPad Pro 2020, assists with autofocus and subject detection in video recording and when using the phone’s cameras in Night Mode.

As for the other cameras, Apple is utilizing a wider ƒ/1.6 aperture for the primary camera in every iPhone 12, as well as a new seven-element lens design that is said to markedly increase the quality of photos, particularly in medium- and low-light scenarios. The iPhone 12 Pro Max in particular sports a larger image sensor with Sensor Shift image stabilization technology, and its telephoto lens achieves 2.5x optical zoom. That's a step up from the 2x zoom of the iPhone 11 Pro, 11 Pro Max and 12 Pro models.

The iPhone 12 range can employ Night Mode and Portrait Mode on every single one of the phones' cameras, across the front and back. And all devices in the family can achieve 10-bit HDR video recording with Dolby Vision (though the iPhone 12 Pro and Pro Max can do this at 60 frames per second, as opposed to 30 fps for the regular iPhone 12).


Comments

Popular posts from this blog

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...