jimp get image size

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

const Jimp = require('jimp');
var image = new Jimp("./path/to/image.jpg/png", function (err, image) {
    var w = image.bitmap.width; //  width of the image
    var h = image.bitmap.height; // height of the image
})
Source

Also in JavaScript: