Skip to content
Popup Example

Earn From News Kiosk

iPhone 17 Pro, iPhone 17 Pro Max Tipped to Debut With Upgraded Telephoto and Selfie Cameras

January 10, 2025
iPhone 17 Pro, iPhone 17 Pro Max Tipped to Debut With Upgraded Telephoto and Selfie Cameras

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

News kiosk Latest Posts

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips Financial potential with expert tips on budgeting, investing, and saving Unlock the Hidden Truth: Click to Reveal!
iPhone 17 Pro, iPhone 17 Pro Max Tipped to Debut With Upgraded Telephoto and Selfie Cameras

iPhone 17 Pro and iPhone 17 Pro Max could arrive with two camera upgrades, according to details shared by a tipster on Weibo, the Chinese microblogging platform. The company’s successors to the iPhone 16 Pro and iPhone 16 Pro Max are not expected to arrive until later this year, but details of the handsets have already been leaked over the past few months. This year, Apple is expected to introduce a redesigned rear camera island for the iPhone 17 Pro models, with a horizontal camera layout.iPhone 17 Pro, iPhone 17 Pro Max Camera Specifications (Leaked)Digital Chat Station (translated from Chinese) writes in a post on Weibo that Apple will equip the iPhone 17 Pro and iPhone 17 Pro Max with a 48-megapixel telephoto camera with 5x optical zoom, which is an upgraded version of the 12-megapixel camera on the iPhone 16 Pro models.Photo Credit: Weibo/ Digital Chat Station The iPhone 17 Pro models will also be equipped with a 24-megapixel selfie camera, according to the tipster. It’s worth noting that both the iPhone 16 Pro and iPhone 16 Pro Max models feature a 12-megapixel TrueDepth camera.This is not the first time that information about Apple’s upgraded iPhone 17 Pro camera specifications have leaked online. In January 2024, TF Securities International analyst Ming-Chi Kuo predicted that the iPhone 17 models would be equipped with a new 24-megapixel selfie camera.Last November, a report suggested that Apple plans to keep its Tetraprism telephoto lens, which enables support for 5x optical zoom, exclusive to its Pro models. Previous reports had indicated that the iPhone 17 and iPhone 17 Air would be the first non-flagship models equipped with a telephoto camera.Previous leaks have also hinted at the arrival of other upgrades on the iPhone 17 Pro models, including an under-display Face. ID technology that could result in a smaller camera cutout. The iPhone 17 models might be equipped with Apple’s A19 chip, along with 8GB of RAM, while the Pro models could feature an A19 Pro chips paired with 12GB of RAM.Affiliate links may be automatically generated – see our ethics statement for details.Catch the Latest from the Consumer Electronics Show on Gadgets 360, at our CES 2025 hub.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();