Google Web Picture Format (.webp)
RFC มาตรฐานWebP is a modern image format developed by Google that provides superior lossless and lossy compression for web images, supporting both alpha transparency and animated frames.
แปลง JPG เป็น WEBP
ตัวแปลงจาก JPG เป็น WEBP ฟรีในเบราว์เซอร์ แปลงไฟล์ได้ทันทีบนอุปกรณ์ของคุณ
บีบอัด WebP ออนไลน์
บีบอัดแบบส่วนตัว 100% ในเบราว์เซอร์ – ไฟล์ไม่เคยออกจากอุปกรณ์ของคุณ
ตรวจสอบและดู Metadata
ระบบปฏิบัติการและเครื่องมือวิเคราะห์ไฟล์จะระบุไฟล์ WebP โดยการตรวจสอบลำดับไบต์ไบนารีส่วนต้น:
ลายเซ็นส่วนหัวในระดับไบต์ (Magic Bytes)
ระบบปฏิบัติการและเครื่องมือวิเคราะห์ไฟล์จะระบุไฟล์ WebP โดยการตรวจสอบลำดับไบต์ไบนารีส่วนต้น:
ลายเซ็น HEX (OFFSET 0):
52 49 46 46การแสดงผลรูปแบบ ASCII: RIFF
มาตรฐาน: RFC 6386 / RIFF Container Specification
ข้อมูลจำเพาะทางเทคนิค
| สถาปัตยกรรมคอนเทนเนอร์ | Resource Interchange File Format (RIFF) container with 'WEBP' FourCC |
| การบีบอัด | Lossy VP8 predictive intra-frame coding & Lossless VP8L spatial entropy coding |
| การจัดลำดับไบต์ (Byte Endianness) | Little-Endian for RIFF chunk sizes and container tags |
| พื้นที่สี | sRGB, Embedded ICC Profiles (via VP8X extended header) |
| ช่องสัญญาณและโครงสร้าง | RGB + Alpha (8-bit per channel) |
| ขนาดสูงสุด | 16,383 x 16,383 pixels (14-bit unsigned integers) |
| ความโปร่งใส | Full 8-bit alpha channel transparency in both lossy and lossless modes |
| การสตรีมและแบบโปรเกรสซีฟ | Progressive decoding supported via incremental VP8 block decoding |
ตารางเปรียบเทียบทางเทคนิค: WebP กับคู่แข่ง
| คุณลักษณะทางเทคนิค | WebP (ปัจจุบัน) | JPEG | PNG | AVIF |
|---|---|---|---|---|
| Supported Compression Modes | Both Lossy (VP8) and Lossless (VP8L) | Lossy only | Lossless only | Both Lossy (AV1) and Lossless |
| Alpha Transparency | Yes (both lossy and lossless) | No | Yes | Yes |
| Animation Support | Yes (multi-frame with frame delays) | No | Requires APNG extension | Yes (AVIF image sequences) |
| HDR / Wide Color Gamut | 8-bit sRGB only | 8-bit standard | 8-bit & 16-bit | 10-bit & 12-bit native HDR |
| Browser Support | 97%+ global support across all modern browsers | 100% universal | 100% universal | 93%+ modern browsers |
รูปแบบความเสียหายทั่วไปและคู่มือการกู้คืน Hex
⚠️ Browser fails to display WebP image or shows broken image icon.
สาเหตุหลัก: RIFF payload length header (bytes 4-7) does not match the actual byte length on disk.
การกู้คืน: Recalculate total file size minus 8 bytes, and patch the 4-byte Little-Endian unsigned integer at offset 0x04.
⚠️ Decoder fails with 'Invalid FourCC: Expected WEBP'.
สาเหตุหลัก: Bytes 8-11 do not contain the ASCII characters 'WEBP'.
การกู้คืน: Verify offset 0x08 contains 0x57 0x45 0x42 0x50 ('WEBP') and that the chunk header matches 'VP8 ' or 'VP8L'.
การวิเคราะห์ความปลอดภัยและเวกเตอร์การโจมตีตัวแยกวิเคราะห์
WebP parsing gained intense security scrutiny following CVE-2023-4863, leading to widespread sandbox hardening across all major web browsers.
เวกเตอร์การโจมตีที่ทราบ
- CVE-2023-4863: Heap buffer overflow in libwebp's BuildHuffmanTable function when parsing invalid lossless Huffman tables, allowing remote code execution.
- Integer overflow when decoding oversized animation frame canvas dimensions.
แนวทางปฏิบัติที่ดีที่สุดในการป้องกัน: Ensure all client and server libraries use libwebp 1.3.2 or later. Decode WebP files in memory-sandboxed worker threads.
ประวัติความเป็นมาและเหตุการณ์สำคัญ
ข้อได้เปรียบและจุดเด่นสำคัญ
- Lossy WebP images are 25%–35% smaller than comparable JPEG images at identical SSIM quality.
- Lossless WebP is typically 26% smaller than standard PNG.
- Single unified format handles photos, graphics with transparency, and lightweight animated clips.
ข้อจำกัดทางเทคนิคและข้อควรพิจารณา
- Maximum dimensions capped at 16,383 x 16,383 pixels, preventing ultra-high resolution panoramic imagery.
- Only supports 8-bit color depth (no native 10-bit or 12-bit HDR support).
- Encoding complex lossy images requires more CPU cycles than legacy JPEG encoders.
เกร็ดความรู้ทางเทคนิคที่น่าสนใจ
- WebP is based on the keyframe intra-prediction algorithms of Google's open-source VP8 video codec.
- The RIFF container used by WebP is the exact same container architecture used by classic Microsoft AVI and WAV files.
- Animated WebP files are typically 60%–80% smaller than animated GIFs.
คำถามทางเทคนิคที่พบบ่อย
Can WebP completely replace both PNG and JPEG?
Yes. For web use, WebP provides superior compression for both photographic content (replacing JPEG) and transparent graphics (replacing PNG). Its universal browser support makes it a primary format for modern web optimization.
Why is WebP lossless compression more efficient than PNG?
WebP lossless uses advanced spatial predictors, color transform decorrelation, a localized color cache, and entropy-coded 2D transforms, resulting in files that are typically 26% smaller than optimal PNGs.
Does WebP support animation?
Yes. WebP supports multi-frame animation with variable frame delays, full alpha transparency per frame, and disposal methods, delivering 60%–80% smaller payloads than traditional animated GIFs.
คู่การแปลงไฟล์ WebP ที่เกี่ยวข้อง
Convert JPEG photos into modern WebP format to reduce web payload size by 25-35%.
Convert WebP images into universal JPEG format for legacy applications and older device compatibility.
Convert PNG graphics into lossless WebP format to save bandwidth while maintaining full alpha transparency.
Convert WebP images into standard PNG format for editing in graphics software.
Convert Animated WebP image sequences into universally supported animated GIF files.