Transform user-uploaded images before uploading to R2
In this guide, you will build an app that accepts image uploads, overlays the image with a visual watermark, then stores the transformed image in your R2 bucket.
With Images, you have the flexibility to choose where your original images are stored. You can transform images that are stored outside of the Images product, like in R2.
When you store user-uploaded media in R2, you may want to optimize or manipulate images before they are uploaded to your R2 bucket.
You will learn how to connect Developer Platform services to your Worker through bindings, as well as use various optimization features in the Images API.
Before you begin, you will need to do the following:
- Add an Images Paid subscription to your account. This allows you to bind the Images API to your Worker.
- Create an R2 bucket, where the transformed images will be uploaded.
- Create a new Worker project.
If you are new, review how to create your first Worker.
To start, you will need to set up your project to use the following resources on the Developer Platform:
- Images to transform, resize, and encode images directly from your Worker.
- R2 to connect the bucket for storing transformed images.
- Assets to access a static image that will be used as the visual watermark.
Configure your Wrangler configuration file to add the Images, R2, and Assets bindings:
{ "images": { "binding": "IMAGES" }, "r2_buckets": [ { "binding": "R2", "bucket_name": "<BUCKET>" } ], "assets": { "directory": "./<DIRECTORY>", "binding": "ASSETS" }}[images]binding = "IMAGES"
[[r2_buckets]]binding = "R2"bucket_name = "<BUCKET>"
[assets]directory = "./<DIRECTORY>"binding = "ASSETS"Replace <BUCKET> with the name of the R2 bucket where you will upload the images after they are transformed. In your Worker code, you will be able to refer to this bucket using env.R2.
Replace ./<DIRECTORY> with the name of the project's directory where the overlay image will be stored. In your Worker code, you will be able to refer to these assets using env.ASSETS.
Because we want to apply a visual watermark to every uploaded image, you need a place to store the overlay image.
The assets directory of your project lets you upload static assets as part of your Worker. When you deploy your project, these uploaded files, along with your Worker code, are deployed to Cloudflare's infrastructure in a single operation.
After you configure your Wrangler file, upload the overlay image to the specified directory. In our example app, the directory ./assets contains the overlay image.
You will need to build the interface for the app that lets users upload images.
In this example, the frontend is rendered directly from the Worker script.
To do this, make a new html variable, which contains a form element for accepting uploads. In fetch, construct a new Response with a Content-Type: text/html header to serve your static HTML site to the client:
const html = `<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Upload Image</title> </head> <body> <h1>Upload an image</h1> <form method="POST" enctype="multipart/form-data"> <input type="file" name="image" accept="image/*" required /> <button type="submit">Upload</button> </form> </body> </html>`;
export default { async fetch(request, env) { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { // This is called when the user submits the form } },};const html = `<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Upload Image</title> </head> <body> <h1>Upload an image</h1> <form method="POST" enctype="multipart/form-data"> <input type="file" name="image" accept="image/*" required /> <button type="submit">Upload</button> </form> </body> </html>`;
interface Env { IMAGES: ImagesBinding; R2: R2Bucket; ASSETS: Fetcher;}
export default { async fetch(request: Request, env: Env): Promise<Response> { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { // This is called when the user submits the form } },} satisfies ExportedHandler<Env>;After you have a form, you need to make sure you can transform the uploaded images.
Because the form lets users upload directly from their disk, you cannot use fetch() to get an image from a URL. Instead, you will operate on the body of the image as a stream of bytes.
To do this, parse the uploaded file from the form and get its stream:
export default { async fetch(request, env) { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream(); } catch (err) { console.log(err.message); } } },};export default { async fetch(request: Request, env: Env): Promise<Response> { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream(); } catch (err) { console.log((err as Error).message); } } },} satisfies ExportedHandler<Env>;For every uploaded image, you want to perform the following actions:
- Overlay the visual watermark that we added to our assets directory.
- Transcode the image — with its watermark — to
AVIF. This compresses the image and reduces its file size. - Upload the transformed image to R2.
To fetch the overlay image from the assets directory, create a function assetUrl then use env.ASSETS to retrieve the watermark.png image:
function assetUrl(request, path) { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request, env) { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; } catch (err) { console.log(err.message); } } },};function assetUrl(request: Request, path: string): URL { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request: Request, env: Env): Promise<Response> { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; } catch (err) { console.log((err as Error).message); } } },} satisfies ExportedHandler<Env>;You can interact with the Images binding through env.IMAGES.
This is where you will put all of the optimization operations you want to perform on the image. Here, you will use the .draw() function to apply a visual watermark over the uploaded image, then use .output() to encode the image as AVIF:
function assetUrl(request, path) { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request, env) { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; if (!watermarkStream) { return new Response("Failed to fetch watermark", { status: 500 }); }
// Apply watermark and convert to AVIF const imageResponse = ( await env.IMAGES.input(fileStream) // Draw the watermark on top of the image .draw( env.IMAGES.input(watermarkStream).transform({ width: 100, height: 100, }), { bottom: 10, right: 10, opacity: 0.75 }, ) // Output the final image as AVIF .output({ format: "image/avif" }) ).response(); } catch (err) { console.log(err.message); } } },};function assetUrl(request: Request, path: string): URL { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request: Request, env: Env): Promise<Response> { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; if (!watermarkStream) { return new Response("Failed to fetch watermark", { status: 500 }); }
// Apply watermark and convert to AVIF const imageResponse = ( await env.IMAGES.input(fileStream) // Draw the watermark on top of the image .draw( env.IMAGES.input(watermarkStream).transform({ width: 100, height: 100, }), { bottom: 10, right: 10, opacity: 0.75 }, ) // Output the final image as AVIF .output({ format: "image/avif" }) ).response(); } catch (err) { console.log((err as Error).message); } } },} satisfies ExportedHandler<Env>;Upload the transformed image to R2.
By creating a fileName variable, you can specify the name of the transformed image. In this example, you append the date to the name of the original image before uploading to R2.
Here is the full code for the example:
const html = `<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Upload Image</title> </head> <body> <h1>Upload an image</h1> <form method="POST" enctype="multipart/form-data"> <input type="file" name="image" accept="image/*" required /> <button type="submit">Upload</button> </form> </body> </html>`;
function assetUrl(request, path) { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request, env) { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; if (!watermarkStream) { return new Response("Failed to fetch watermark", { status: 500 }); }
// Apply watermark and convert to AVIF const imageResponse = ( await env.IMAGES.input(fileStream) // Draw the watermark on top of the image .draw( env.IMAGES.input(watermarkStream).transform({ width: 100, height: 100, }), { bottom: 10, right: 10, opacity: 0.75 }, ) // Output the final image as AVIF .output({ format: "image/avif" }) ).response();
// Add timestamp to file name const fileName = `image-${Date.now()}.avif`;
// Upload to R2 await env.R2.put(fileName, imageResponse.body);
return new Response(`Image uploaded successfully as ${fileName}`, { status: 200, }); } catch (err) { console.log(err.message); return new Response("Internal error", { status: 500 }); } } return new Response("Method not allowed", { status: 405 }); },};interface Env { IMAGES: ImagesBinding; R2: R2Bucket; ASSETS: Fetcher;}
const html = `<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Upload Image</title> </head> <body> <h1>Upload an image</h1> <form method="POST" enctype="multipart/form-data"> <input type="file" name="image" accept="image/*" required /> <button type="submit">Upload</button> </form> </body> </html>`;
function assetUrl(request: Request, path: string): URL { const url = new URL(request.url); url.pathname = path; return url;}
export default { async fetch(request: Request, env: Env): Promise<Response> { if (request.method === "GET") { return new Response(html, { headers: { "Content-Type": "text/html" } }); } if (request.method === "POST") { try { // Parse form data const formData = await request.formData(); const file = formData.get("image"); if (!file || typeof file.stream !== "function") { return new Response("No image file provided", { status: 400 }); }
// Get uploaded image as a readable stream const fileStream = file.stream();
// Fetch image as watermark const watermarkResponse = await env.ASSETS.fetch( assetUrl(request, "watermark.png"), ); const watermarkStream = watermarkResponse.body; if (!watermarkStream) { return new Response("Failed to fetch watermark", { status: 500 }); }
// Apply watermark and convert to AVIF const imageResponse = ( await env.IMAGES.input(fileStream) // Draw the watermark on top of the image .draw( env.IMAGES.input(watermarkStream).transform({ width: 100, height: 100, }), { bottom: 10, right: 10, opacity: 0.75 }, ) // Output the final image as AVIF .output({ format: "image/avif" }) ).response();
// Add timestamp to file name const fileName = `image-${Date.now()}.avif`;
// Upload to R2 await env.R2.put(fileName, imageResponse.body);
return new Response(`Image uploaded successfully as ${fileName}`, { status: 200, }); } catch (err) { console.log((err as Error).message); return new Response("Internal error", { status: 500 }); } } return new Response("Method not allowed", { status: 405 }); },} satisfies ExportedHandler<Env>;In this tutorial, you learned how to connect your Worker to various resources on the Developer Platform to build an app that accepts image uploads, transform images, and uploads the output to R2.
Next, you can set up a transformation URL to dynamically optimize images that are stored in R2.