imgproxy is a free, open source photo & video editors project written in Go and released under Apache-2.0. It has 11,080 GitHub stars, 776 forks and 67 open issues, and was last pushed 5 days ago. On this registry it ranks #12 of 29 tracked projects in Photo & Video Editors, with 5 head-to-head comparisons available.

What is imgproxy?

imgproxy is a fast, secure standalone HTTP server, written in Go and released under the Apache-2.0 licence, that resizes, processes, and converts images on the fly for web developers, platform engineers, and teams that want image processing to live in a dedicated service instead of inside their applications.

What it is

imgproxy lives in the web application image delivery ecosystem, where it acts as a standalone HTTP server rather than a library linked into an application. It handles resizing, processing, and conversion, and it is built on libvips, the image processing library behind its speed and low memory footprint. The project is distributed as Go source under Apache-2.0, and its topic list places it alongside Docker, microservice, and image-server concerns, which reflects how it is meant to be deployed: next to an application, behind shared infrastructure, rather than compiled into the application itself.

The concrete problem it solves is duplicated and repeated image preparation inside web applications. imgproxy is a drop-in replacement for all the image processing code inside a web application, whether that code calls image processing libraries or invokes command-line tools. Without it, images must be re-prepared every time a design changes; with it, those derivatives are produced on demand. A source image URL and a set of processing options are combined into a specially crafted URL, and imgproxy fetches the image, processes it according to those options, and serves the result back. The only thing an application needs to do is generate imgproxy URLs with the desired processing options, and those URLs can be used directly in HTML, CSS, or JavaScript just like any other image URL.

Key capabilities

  • Serves processed images through crafted URLs that carry both the source image URL and the processing options, usable directly in HTML, CSS, and JavaScript.
  • Resizes, crops, rotates, watermarks, and applies filters to images on the fly.
  • Handles JPEG, PNG, GIF, WebP, AVIF, JPEG XL, and additional formats listed in the documentation.
  • Optimizes output through colour profile stripping, metadata stripping, and PNG quantization.
  • Provides simple smart cropping and auto-quality by file size in the open-source edition.
  • Runs on a libvips-based pipeline tuned for speed and a very low memory footprint.
  • Deliberately omits HTTPS and corner rounding, leaving TLS termination to a CDN, load balancer, or reverse proxy and corner effects to CSS.

Who uses it and how

  • Web teams that embed imgproxy URLs in templates, stylesheets, and scripts instead of pre-generating and storing every derivative size the design requires.
  • High-volume image pipelines, since the project is built to handle a large amount of image processing.
  • Platform teams running it as a microservice in a Docker-based deployment behind a CDN, load balancer, or reverse proxy, which is where HTTPS is terminated.
  • Product teams that change layouts often and want imagery regenerated on demand rather than re-prepared in batch.
  • Teams needing video, PDF, or Photoshop preview generation, object detection, advanced smart cropping, or SSIM-based auto-quality move to the paid imgproxy Pro tier.

Getting started

The project is started by following the Getting Started guide linked from the README, which is written to get imgproxy running in a couple of minutes with minimal configuration. It is deployed as a standalone server, conventionally as a Docker container behind a CDN, load balancer, or reverse proxy.

How it compares

No directly comparable image server is named in the facts, so imgproxy stands alone in this registry. The only related offering named is imgproxy Pro, a paid tier of the same project that adds video, PDF, and Photoshop preview generation, advanced watermarking, colour adjustment, GIF to MP4 conversion, SVG minification, object detection, and SSIM-based auto-quality.

When to use it — and when not to

Choose imgproxy when image processing should be offloaded from the application and the deployment already has a CDN, load balancer, or reverse proxy in front of internal services, because imgproxy itself does not implement HTTPS and does not round image corners or apply masks. Do not choose it if the goal is a library embedded in the application, if TLS must terminate inside the image server, or if video and PDF preview generation or object detection are required, since those are Pro features. The repository shows 67 open issues and a push in September 2026, so the project is active, but the README in hand is truncated mid-sentence and no release details or package names are given, so a self-hoster must confirm distribution specifics from the documentation before committing.

project readme (upstream, from github) — read inline

Website | Blog | Documentation | imgproxy Pro

Docker Bluesky X X Discord

CI


imgproxy is a fast and secure standalone server for resizing, processing, and converting images. The guiding principles behind imgproxy are speed, security, and simplicity.

imgproxy is able to quickly and easily resize, process, and optimize images on the fly, and it's well-equipped to handle a large amount of image processing. imgproxy is a drop-in replacement for all the image processing code inside your web application (such as using image processing libraries or calling command-line tools). With imgproxy, you don’t need to repeatedly re-prepare images to fit your design every time it changes, as imgproxy does this on demand.

To get an even better introduction and to dive deeper into the nitty-gritty details, check out this article by Evil Martians: imgproxy: Resize your images instantly and securely

imgproxy demo Photo by Joshua Patton

✨ Features

imgproxy is packed with features to the brim to cover all your image processing needs:

Feature imgproxy OSS imgproxy Pro
Image formats Basic formats: JPEG, PNG, GIF, WebP, AVIF, JPEG XL, and more Preview generation for video, PDF, and Photoshop documents
Processing Resizing, cropping, rotating, watermarking, filters Getting image info, advanced watermarking, color adjustment
Optimization Color profile and metadata stripping, PNG quantization Advanced compression settings, GIF to MP4 conversion, SVG minification
Smart features Simple smart cropping, auto-quality by file size Object detection, advanced smart cropping, auto-quality by SSIM, best format selection

Check out the full feature list for more details.

🛠️ How it works

imgproxy works as a standalone HTTP server. You provide it with a source image URL and a set of processing options via a specially crafted URL, and imgproxy fetches the image, processes it according to your specifications, and serves the resulting image back to you. You can use imgproxy URLs directly in your HTML, CSS, or JavaScript code, just like you would with any other image URL.

This way, imgproxy offloads all the image processing work from your application. The only thing your application needs to do is to generate imgproxy URLs with the desired processing options.

⚖️ Main principles

Simplicity

Keep it simple, stupid!

We believe that software should be simple yet powerful. If your grandma can't get it up and running, you should make it simpler. That's why we designed imgproxy to be ready to use in a couple of minutes with minimal configuration. Check out the Getting Started guide to see how easy it is.

No code is better than no code.

We believe in the single responsibility principle. If something can be done better outside of imgproxy, we won't reinvent the wheel. As a couple of examples:

  • HTTPS support sounds like a must-have feature for a web server. However, imgproxy will live behind a CDN, a load balancer, or a reverse proxy in a production environment anyway, so there is no need to implement HTTPS support inside imgproxy itself.
  • Rounding image corners or applying masks sounds useful, but doing this with CSS is way easier and more flexible.

Speed

We strive to tune every little piece of imgproxy to make it as fast as possible.

imgproxy takes advantage of probably the most efficient image processing library out there – libvips. It’s scary fast and comes with a very low memory footprint. Our extensive experience with libvips has enabled us to optimize our image-processing pipeline to its maximum.

You can take a look at some benchmarking results and compare imgproxy with some well-known alternatives in our benchmark report.

Security

Image processing is a wide attack surface. That's why we treat security very seriously. imgproxy offers several security measures that enable you to strike the optimal balance between security and usability for your specific use case. For example:

  • imgproxy supports signing image URLs to prevent abusing your image processing server for denial-of-service attacks or simply using it for the attacker's own needs.
  • imgproxy checks the image type before fully downloading it to prevent unwanted resource consumption.
  • imgproxy checks the real image dimensions before decoding it to prevent so-called "image bombs", like those described in this doc.
  • imgproxy supports authorization by HTTP header to prevent direct access to it, bypassing your CDN or caching server.
  • imgproxy allows restricting image sources, maximum image file size, processing options, etc.

Check out our documentation for more details on security features.

🚀 Getting started

The easiest and recommended way to run imgproxy is using Docker. It's just a matter of a single command:

docker run -p 8080:8080 -it ghcr.io/imgproxy/imgproxy:latest

That's it! imgproxy is ready to accept image processing requests at http://localhost:8080.

Check out the Getting Started guide for a step-by-step tutorial on how to get your first image processed with imgproxy.

📚 Documentation

You can find the full documentation at docs.imgproxy.net.

💙 Supporting imgproxy

imgproxy is not a side project; it's what we do for a living. We work hard to make it better every day. If you find imgproxy useful and want to support its development, here are some ways you can do that:

  • imgproxy Pro subscription. imgproxy Pro is a more feature-rich version of imgproxy. By subscribing to imgproxy Pro, you not only support the development of imgproxy but also get access to advanced features and priority support.
  • Sponsorship. If you don't need the Pro features but still want to support the project, consider sponsoring us on GitHub Sponsors.
  • Spread the word. If you like imgproxy, give it a shoutout. We don't spend much on marketing, and imgproxy's popularity is primarily a result of our valued users sharing it on social media and blogs.

🙏 Special thanks

Many thanks to:

📄 License

imgproxy is licensed under the Apache License 2.0.

See LICENSE for the full license text.

⚠️ Security Contact

To report a security vulnerability, please contact us at [email protected]. We will coordinate the fix and disclosure.

Frequently asked questions

Is imgproxy free to use?

imgproxy is open source under the Apache-2.0 licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does imgproxy do?

Fast and secure standalone server for resizing, processing, and converting images on the fly

What is imgproxy written in?

imgproxy is primarily written in Go. Its source is publicly available at https://github.com/imgproxy/imgproxy, and it has 11,080 GitHub stars.