Image CDN
A content delivery network specialized for images that automatically optimizes, resizes, converts formats, and caches images at edge servers worldwide.
Image CDNs go beyond traditional CDNs by performing real-time image transformations at the edge. When a browser requests an image, the CDN can automatically resize it for the device viewport, convert it to the optimal format (WebP for Chrome, AVIF where supported, JPEG as fallback), adjust quality based on network speed, and cache the result at the nearest edge server. This eliminates the need to pre-generate multiple image variants. Popular services include Cloudflare Images, Imgix, Cloudinary, and Bunny Optimizer. For web performance, image CDNs typically reduce image payload by 40-80% compared to serving original files, directly improving Largest Contentful Paint (LCP) scores. URL-based APIs allow transformations via query parameters (width, height, format, quality), making integration straightforward for any web stack.
Related Terms
Responsive Image
An image implementation that serves different sizes or formats based on the viewer's device, screen size, and connection speed.
Lazy Loading
A technique that defers loading of off-screen images and content until the user scrolls near them, reducing initial page load time.
Compression
The process of reducing image file size by encoding pixel data more efficiently, sometimes at the cost of quality.