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

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

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 ↑