All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.traces.image.helpers.js Maven / Gradle / Ivy

The newest version!
'use strict';

var probeSync = require('probe-image-size/sync');
var dataUri = require('../../snapshot/helpers').IMAGE_URL_PREFIX;
var Buffer = require('buffer/').Buffer;  // note: the trailing slash is important!

exports.getImageSize = function(src) {
    var data = src.replace(dataUri, '');
    var buff = new Buffer(data, 'base64');
    return probeSync(buff);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy