ImageRenamer.

Rename / Resize / Reformat / Compress / Host

Landscaping image renamer for project photos.

Prepare garden and landscaping images for service pages, galleries and case studies.

ImageRenamer helps landscaping businesses turn project photos into descriptive filenames such as porcelain-patio-garden-border.webp, then compresses them for faster websites.

Try the image renamer

Copy-paste API examples

curl -X POST https://imagerenamer.co.uk/api/v1/process \
  -H "Authorization: Bearer ir_live_your_api_key" \
  -F "targetWidth=1000" \
  -F "image=@/path/to/image.jpg"
const form = new FormData();
form.append("targetWidth", "1000");
form.append("image", file);

const response = await fetch("https://imagerenamer.co.uk/api/v1/process", {
  method: "POST",
  headers: { Authorization: "Bearer ir_live_your_api_key" },
  body: form,
});

const { file: output } = await response.json();
console.log(output.newName, output.url);