AV1 Image File Format (.avif)
ISO/IEC 표준AVIF is a next-generation open image format derived from the AV1 video codec, delivering cutting-edge compression efficiency, high dynamic range (HDR), and wide color gamuts.
AVIF을(를) JPG(으)로 변환
무료 브라우저 내 AVIF-JPG 변환기. 기기에서 파일을 즉시 변환하세요.
AVIF 온라인 압축
브라우저 내 100% 안전한 압축 — 파일이 기기 외부로 전송되지 않습니다
검사 및 메타데이터
운영 체제와 파일 분석기는 파일 선두의 바이너리 바이트 시퀀스를 검사하여 AVIF 파일을 식별합니다:
바이트 단위 헤더 시그니처 (매직 바이트)
운영 체제와 파일 분석기는 파일 선두의 바이너리 바이트 시퀀스를 검사하여 AVIF 파일을 식별합니다:
16진수 시그니처 (오프셋 4):
66 74 79 70 61 76 69 66ASCII 표현: ftypavif
표준화: ISO/IEC 23000-22 (MIAF) / AOMedia Specification
기술 사양
| 컨테이너 아키텍처 | ISO Base Media File Format (ISOBMFF / MP4 container architecture) |
| 압축 | AV1 intra-frame video compression with directional spatial prediction & tile divisions |
| 바이트 엔디안 | Big-Endian for ISOBMFF atom/box sizes and fourCC codes |
| 색 공간 | BT.2020, DCI-P3, sRGB, Full ICC Profiles, NCLX Color Primaries |
| 채널 및 구조 | Monochrome, YUV 4:2:0, 4:2:2, 4:4:4, and auxiliary Alpha channel |
| 최대 크기 | 65,536 x 65,536 pixels per grid tile (unlimited via multi-tile composition) |
| 투명도 | Full 8, 10, or 12-bit alpha transparency channel |
| 스트리밍 및 프로그레시브 | Progressive rendering supported via multi-layer spatial tiling |
기술 비교 매트릭스: AVIF 대 경쟁사
| 기술적 속성 | AVIF (현재) | WebP | JPEG | JPEG XL |
|---|---|---|---|---|
| Compression Efficiency | Highest compression efficiency for photographic imagery | Good (25%-35% over JPEG) | Baseline standard | High efficiency + lossless focus |
| Color Depth & HDR | 8, 10, 12-bit native HDR & BT.2020 color gamut | 8-bit sRGB only | 8-bit standard | Up to 32-bit floating point HDR |
| Encoding Speed | Slow / CPU-heavy (requires sophisticated AV1 heuristics) | Fast to moderate | Extremely fast | Moderate to fast |
| Licensing | Royalty-free Open Source (AOMedia) | Royalty-free (Google) | Free standard | Royalty-free (ISO) |
| Browser Support | 93%+ modern browsers (Chrome, Firefox, Safari, Edge) | 97%+ | 100% | Experimental in Chromium |
일반적인 손상 모드 및 헥스 복구 가이드
⚠️ AVIF file fails to render with error 'Invalid ISOBMFF container'.
근본 원인: Missing or malformed 'ftyp' box or missing 'avif' brand identifier at offset 0x04.
복구: Inspect file with MP4Box or hex editor to ensure bytes 4-11 contain 'ftypavif' or compatible brand 'mif1'.
보안 분석 및 파서 공격 벡터
AVIF relies on complex AV1 video bitstream decoders (dav1d / libaom). Secure implementations isolate decoders in restricted sandboxes.
알려진 공격 벡터
- Complex bitstream parsing exploits in AV1 arithmetic coding or film grain synthesis logic.
- Out-of-memory denial-of-service via huge multi-tile grid declarations.
방어적 모범 사례: Use modern sandboxed Rust decoders (ravif) or updated libavif with dav1d.
역사적 배경 및 주요 이력
주요 장점
- Industry-leading lossy compression efficiency (up to 50% smaller than JPEG and 20% smaller than WebP).
- Native 10-bit and 12-bit High Dynamic Range (HDR) and Wide Color Gamut (WCG) support.
- Backed by major tech giants (Google, Apple, Microsoft, Netflix, Mozilla) with zero royalty fees.
기술적 제한 사항 및 단점
- Encoding is significantly more CPU-intensive and slower than JPEG or WebP.
- Requires modern hardware or updated operating systems for hardware-accelerated decode.
- Lossless mode is generally less efficient than PNG or WebP lossless for simple UI graphics.
흥미로운 기술적 상식
- AVIF is packaged inside the exact same ISOBMFF container structure used by MP4 video files.
- Netflix uses AVIF for their global catalog UI thumbnails, saving terabytes of daily network bandwidth.
- AVIF supports film grain synthesis, artificially generating pleasing texture without storing heavy high-frequency noise.
자주 묻는 기술 질문
Is AVIF better than WebP?
For photographic images, AVIF offers substantially better compression than WebP (often 20% smaller at identical quality) and supports 10-bit and 12-bit HDR color. However, AVIF takes longer to encode than WebP.
Why does AVIF take longer to encode?
AVIF uses the AV1 video codec's intra-frame compression algorithms, which evaluate thousands of spatial prediction angles, transform block sizes (from 4x4 to 64x64), and loop filters to find the mathematically optimal compression.
Can AVIF replace JPEG for everyday web images?
Yes. All major web browsers (Chrome, Safari, Firefox, Edge) now support AVIF natively. Using AVIF with HTML5 '<picture>' fallbacks is an industry best practice.