惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗

Arhan's Blog

Bring Back the Paragraph Native Instant Space Switching on MacOS Memory-corrupting Pong The Generativity Pattern in Rust Turning Image Corruption into Art Two Years of University Wasm-pack Optimization Flags you Never Knew About! How Many Iconic Computing Numbers can you Recognize? Implementing === in JavaScript from Scratch DEF CON 32 Photo Dump True Private State in JavaScript: a Chromium Rabbit Hole My GitHub Repository has 100,000 Contributors Hello World
An Image Compression Tip with Astro
Arhan Chaudhary · 2025-05-10 · via Arhan's Blog

Thanks to my friend Eric for telling me about this! If you use Astro, the web framework this site is built on, there is a sweet drop-in replacement for the <Image> component that offers better compression:

<Image
<Picture 
    formats={["avif", "webp"]}
    src={penguinSrc}
    alt="A very cool penguin!"
/>

Better, you can create a light component wrapper around this technique called <ContentImage> to encapsulate the formats parameter.

The <Picture> component instructs the browser to use the modern AVIF format for efficient image compression. If your browser doesn’t support AVIF (which is unlikely), it falls back to the WEBP format, what <Image> already compiles to. However, this of course means Astro generates two versions of every image, so keep that in mind if you have many images on your site.

A side note: AVIF is amazing! Someone managed to compress the entirety of Shrek in 8MB. How it works is borderline magic, and its future looks bright. Once it becomes a little more mature in the web ecosystem, I have no doubt <Image> will eventually compile to AVIF and automate this process.

Until next time!

↑ Scroll to top ↑