README
Express middleware to rehost and resize images
Install
$ npm install rehost
Usage
var express = ;var rehost = ;var app = ;app;app;
Requesting the following URL on the server:
http://localhost:3000/aHR0cDovL2V4YW1wbGUuY29tL2ltYWdlLnBuZw.jpg?resize=500x500
Will fetch, resize and convert the image at:
The source URL is encoded using "Base 64 Encoding with URL and Filename Safe Alphabet" from RFC 4648 without padding.
Example in JavaScript:
var base64 = ;var url = 'http://example.com/image.jpg'var enc = base64;
Example in Ruby:
url = 'http://example.com/image.jpg'enc = Base64.urlsafe_encode64(url, padding: false)
Parameters
The resize
parameter is a subset of ImageMagick geometry:
<width>x<height>{!}
.
The format
parameter to convert the image can be jpg
or png
.
The rehost
, resize
and format
parameters can be in the query string or
the path of the request. They can also be defined in an optional options
object passed to the middleware function.
Caching
No caching is done on the server so it should be running behind a CDN.
License
Copyright (c) 2017 Vincent Ollivier. Released under MIT.