Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.52 KB

readme.md

File metadata and controls

26 lines (17 loc) · 1.52 KB

jinageresizer (Jin's image resizer) Deploy


Build Status Coverage Status Gitter

jinageresizer is a image resizing service using flask, imagemagick and wand inspired by firesize

Current url Scheme

base_url/image_url/?rwidth=resize_width_in_px&rheight=resize_height&type=jpg|png Example: https://images.jinpark.net/http://i.imgur.com/AMTTUDK.jpg/?rwidth=300&type=png

Only the image_url is required. The query params are all optional.

If width and height are given, aspect ratio is not preserved. If only width or height is given, aspect ratio is preserved and the non specified variable is modified to fit the aspect ratio.

I highly suggest putting this behind a cdn to allow for edge caching so the server is not reprocessing the same image again and again. If you are using cloudflare, as I am, you might need to force cloudflare to cache everything using page rules, since the resulting url is usually not one of the automatic cached extensions.

TO DO

  • Add cropping (with gravity)