Image Proxy

A high-performance image proxy service powered by Cloudflare Workers

Global Edge Network

Images are served from Cloudflare's global CDN network, ensuring minimal latency worldwide.

CORS Support

Built-in CORS support allows seamless integration with any web application.

Edge Caching

Automatic caching at the edge reduces origin load and improves response times.

Interactive Demo

Implementation Guide

HTML Implementation

<img src="https://your-worker.workers.dev/https://example.com/image.jpg" alt="Proxied Image">

CSS Background

.element { background-image: url('https://your-worker.workers.dev/https://example.com/image.jpg'); }

JavaScript Fetch

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; });