Upgrade to Pro — share decks privately, control downloads, hide ads and more …

imgproxy is amazing

imgproxy is amazing

When you allow users to upload images to your website or app, what are the accompanying features you should have? Usually, this includes the ability to create previews (or thumbnails) of different sizes, add watermarks, crop to a specific aspect ratio, and so on.

The “classic” kind of way to do this is with an “in-house” approach. You plug in some libraries to process images (and install imagemagick or libvips to your servers or Docker images), and then create an entire pipeline to do the actual processing: configs, storage, background jobs. This is some complex machinery, but do we really need it?

Instead, enter the amazing world of image processing services that will change your life forever. 🦄 🌈 ✨

After making the switch, you'll never want to return to the “manual” way of handling thumbnails. Your applications will become more simple and reliable, UX will improve, and your hair will finally become soft and silky smooth.

Let's talk about the difficulties and dangers the “classic” approach entails, how image processing services solves them, and just how simple that is!

And, as an example of such a service, I'll tell you about imgproxy, an amazing tool which I'm going to shamelessly advertise!

Andrey Novikov

July 22, 2023
Tweet

More Decks by Andrey Novikov

Other Decks in Programming

Transcript

  1. Handling user-uploaded images with ease and confidence Andrey Novikov, Evil

    Martians Osaka Web Designers and Developers Meetup 22 July 2023
  2. About me Back-end engineer at Evil Martians Writing Ruby, Go,

    and whatever SQL, Dockerfiles, TypeScript, bash… Love open-source software Created and maintaining a few Ruby gems Living in Japan for 1 year already Driving a moped And also a bicycle to get kids to kindergarten Hi, I’m Andrey
  3. Martian Open Source Yabeda: Ruby application instrumentation framework Lefthook: git

    hooks manager AnyCable: Polyglot replacement for ActionCable server PostCSS: A tool for transforming CSS with JavaScript Imgproxy: Fast and secure standalone server for resizing and converting remote images Logux: Client-server communication framework based on Optimistic UI, CRDT, and log Overmind: Process manager for Procfile-based applications and tmux Even more at evilmartians.com/oss Today's topic
  4. So, you need to handle user images Profile pictures Product

    photos Recipes Reviews Photos in feedback forms … Surprisingly often you need to do it in a web application!
  5. What you will do with them? Generate thumbnails to save

    bandwidth Crop them to fit design Add watermarks to prevent theft Apply filters However, CSS can do it too Show them in various places, of course!
  6. “Classic” way Upload image to the server Probably among other

    form fields Store it somewhere Often on S3 or other cloud storage Generate all required thumbnails As many as your design requires Store them somewhere Again S3 or other cloud storage Serve them to the user CDN will help here
  7. “Classic” way visualized JobQueue Storage Server User Job started Uploads

    Image Stores Image Queues Job Upload successful Requests thumbnail Retrieves Thumbnail There are no thumbnails yet! “Image is processing” Retrieve image Unpredictable latency here
  8. JobQueue ImageStorage Server User Generates thumbnail Stores Thumbnail Requests thumbnail

    Retrieves Thumbnail Oh yes, of course, here it is Returns thumbnail
  9. Problems of “classic” approach Hard to predict latency These “image

    is processing” fallbacks are ugly Hard to add new variants Need to reprocess all images before changing front-end And hard to clean up old ones Space is cheap, but not free Deployment gets complicated You need to install ImageMagick or something on all servers/containers Security also is your headache Processing images on your servers is a security and stability risk, e.g. PNG decompression bomb.
  10. Do we have to do things this way? What if

    we could just generate thumbnails on the fly?
  11. Meet image processing servers There are many of them: imaginary,

    cloudinary, etc. And, of course, imgproxy! They do just one thing, but do it well imgproxy Storage Server User imgproxy Storage Server User generate thumbnail on the fly Uploads Image Notifies about upload Thumbnail URL Requests thumbnail Retrieves image Respond with thumbnail
  12. What the URL! Given original image URL: I need to

    get 300×150 thumbnail, but for Retina displays, smart cropped, and saturated, also with watermark in right bottom corner. Here is the result URL for such a thumbnail: See https://docs.imgproxy.net/generating_the_url The only thing you need to care about is constructing URLs https://mars.nasa.gov/system/downloadable_items/40368_PIA22228.jpg https:%2F%2Fmars.nasa.gov%2Fsystem%2Fdownloadable_items%2F40368_PIA22228.jpg https://demo.imgproxy.net/ doqHNTjtFpozyphRzlQTHyBloSoYS13lLuMDozTnxqA/ rs:fill:300:150:1/dpr:2/g:ce/sa:1.4/ wm:0.5:soea:0:0:0.2/wmu:aHR0cHM6Ly9pbWdwcm94eS5uZXQvd2F0ZXJtYXJrLnN2Zw/ plain/ Digital signature Processing options Original image URL
  13. imgproxy Written in Go Great concurrency, low memory footprint, squeezes

    everything from your servers CPU Uses libvips for image handling Along with specially crafted processing pipeline optimized for speed and concurrency Open source and open core Free to use OSS version that covers needs of 99% users, paid PRO version with more features and support for those who really need it Easy to deploy Just spin up a Docker container and forget and it is ready to go. Easy to use Just construct a URL using one of the client libraries, send it to a browser, done! Secure and safe Uses signed URIs, handles image bombs, invalid images, and more.
  14. More on security Signed URLs No one can generate URLs

    without knowing your secret key and use your imgproxy to process their images for free. Or DDoS and cache-poison your CDN by requesting your images with all possible sizes and options. Examples how to sign URL in different languages: https://github.com/imgproxy/imgproxy/tree/master/examples Image compression bombs imgproxy will check metadata and won’t process images that are too large by dimensions Authentication imgproxy can check for authentication headers, and will not process images if someone try to access it bypassing CDN Source restrictions imgproxy can be instructed to allow process images only from sources that you control.
  15. How it solves “classic” approach Latency: Dedicated service that do

    only images processing Very performant per se, and you can scale it independently from your main application, also add CDN in front of it Adding new variants: Just construct new URL Construct new URL, request it, done! Cleaning up old ones: Let CDN caches to expire Do you really need to store thumbnails at all? Care only for originals. Security and stability: it is separate from your main application It handles image bombs, and other nasty stuff, but even if some malicious code will be executed, it will find itself in empty Docker container without anything in it.
  16. Recommended setup Use direct-upload to cloud storage (S3, …) No

    need to pass images through your application servers at all Place a caching CDN in front of imgproxy Take repetitive load off from imgproxy, save some CO₂
  17. Migration pitfalls Only back-end can construct signed URLs No more

    guessing on front-end of what variants are available But you can opt-out from signing URLs if you want Couldn't recall any more 🌚
  18. Open source imgproxy will cover you But there are more

    goodies (and support) in PRO version! Advanced per-image settings Different resizing algirithms, watermarks, compression for individual images Automagic selection of image format and quality settings Maximum per-image compression using most modern format without visible quality loss Even smarter crop with object detection Detect objects using ML algorithms to crop more accurately or blur them SVG processing Inject custom styles, minify Videos, animated GIFs, PDFs support Thumbnailing videos, GIF to video conversion, getting image info OSS version has everything that most web applications need… imgproxy.net/features
  19. Read more imgproxy is amazing by John Nunemaker heavily influenced

    this talk plot (and title, yes) imgproxy: Resize your images instantly and securely by Sergey Alexandrovich (imgproxy author) with more details on how imgproxy works and how to use it Decoding AVIF: Deep dive with cats and imgproxy by Polina Gurtovaya illustrated explanation of modern video and image format internals and how to start using them with imgproxy!
  20. Thank you! @Envek @Envek @Envek @Envek github.com/Envek @evilmartians @evilmartians @evil-martians

    @evil.martians evilmartians.com Our awesome blog: evilmartians.com/chronicles! See these slides at envek.github.io/owddm-imgproxy-is-amazing Go get imgproxy! imgproxy.net