A high-performance image proxy service powered by Cloudflare Workers
Images are served from Cloudflare's global CDN network, ensuring minimal latency worldwide.
Built-in CORS support allows seamless integration with any web application.
Automatic caching at the edge reduces origin load and improves response times.
<img src="https://your-worker.workers.dev/https://example.com/image.jpg" alt="Proxied Image">
.element {
background-image: url('https://your-worker.workers.dev/https://example.com/image.jpg');
}
const proxyUrl = 'https://your-worker.workers.dev/';
const imageUrl = 'https://example.com/image.jpg';
const url = proxyUrl + encodeURIComponent(imageUrl);
fetch(url)
.then(response => response.blob())
.then(blob => {
const objectUrl = URL.createObjectURL(blob);
image.src = objectUrl;
});