<< More Tutorials
How to use rethumb in Node.js?
To use rethumb in Node.js try the following code:
var http = require('http');
var fs = require('fs');
var file = fs.createWriteStream("beach.thumb.jpg");
var request = http.get("http://api.rethumb.com/v1/width/100/http://factor45.org/images/beach.jpg", function(response) {
response.pipe(file);
});
Start using this example now
Use the following commands to get started:
$ git clone https://github.com/rethumb/rethumb-nodejs-examples.git
$ cd rethumb-nodejs-examples
$ node generic.js
More examples using Node.js
How to use rethumb in Node.js?
How to resize an image by width in Node.js using rethumb?
How to resize an image by height in Node.js using rethumb?
How to resize an image by width and height in Node.js using rethumb?
How to create a square thumbnail from an image in Node.js using rethumb?
How to read Exif data in json format from an image in Node.js using rethumb?
How to make an image responsive in Node.js using rethumb?
How to read GPS coordinates from an image in Node.js using rethumb?
How to convert an image to JPG, GIF, PNG, TIF or WebP in Node.js using rethumb?
How to resize an image to cover any dimensions in Node.js using rethumb?