Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jimp get image size

//Using Jimp - downloadable and docs -> https://www.npmjs.com/package/jimp

const Jimp = require('jimp');
const image = new Jimp("./path/to/image.jpg", function (err, image) {
    var w = image.bitmap.width; //  width of the image
    var h = image.bitmap.height; // height of the image
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #jimp #image #size
ADD COMMENT
Topic
Name
9+7 =