Next.js Image URL Extractor

Extract original image URLs from Next.js optimized images

A tool by @imrandeveloper

How it works

This tool extracts the original image path from Next.js optimized image URLs by:

  1. Parsing the URL and extracting the 'url' parameter
  2. Decoding the URL-encoded image path
  3. For static media files, removing the hash to get the clean filename
  4. Combining with the base domain to get the original URL

Supported URL Patterns:

  • Standard Next.js images: /_next/image?url=%2Fimages%2Fphoto.jpg&w=640&q=75
  • Static media files: /_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fimage.hash.ext&w=640&q=75
  • External images: /_next/image?url=https%3A%2F%2Fexternal.com%2Fimage.jpg&w=640&q=75