본문 바로가기
카테고리 없음

아이폰 17 에어 기대

by wjdflgkrl 2025. 3. 10.
반응형
아이폰 17 에어 - 차세대 혁신 기술

아이폰 17 에어 - 차세대 혁신 기술

아이폰 17 에어 제품 이미지

이미지 출처: ZDNet Korea

목차

아이폰 17 에어 소개

아이폰 17 에어는 애플의 최신 플래그십 스마트폰으로, 초경량 디자인과 차세대 AI 기술을 탑재한 혁신적인 제품입니다.

주요 기능 및 사양

디자인 및 디스플레이

6.7인치 LTPO OLED 디스플레이를 탑재하여 높은 밝기와 부드러운 스크롤링 경험을 제공합니다.

성능과 프로세서

최신 A19 Bionic 칩을 탑재하여 강력한 성능과 뛰어난 전력 효율성을 제공합니다.

카메라 시스템

  • 메인 카메라: 48MP 초고해상도 센서
  • 초광각 카메라: 12MP
  • 망원 카메라: 5배 광학 줌 지원
  • 프론트 카메라: 12MP AI 셀피 카메라

배터리 및 충전

4500mAh 배터리를 탑재하여 하루 종일 지속되는 사용 시간을 제공하며, 50W 고속 충전을 지원합니다.

혁신적인 AI 기능

아이폰 17 에어는 애플의 최신 Neural Engine을 탑재하여 강력한 AI 기반 기능을 제공합니다.

가격 및 출시일

아이폰 17 에어는 2025년 9월 공식 발표될 예정이며, 기본 모델 가격은 1,099달러부터 시작됩니다.

마무리

아이폰 17 에어는 초경량 디자인과 강력한 성능, AI 기반 스마트 기능으로 차세대 플래그십 스마트폰의 기준을 새롭게 정의합니다.

반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};