0.1.1 • Published 10 years ago

jpegheader v0.1.1

Weekly downloads
8
License
-
Repository
github
Last release
10 years ago

node-jpegheader

  • Build Status
  • Coverage Status
  • Dependency Status

Fast extraction of jpeg informations (width/height/depth/colorspace)

Extract basic jpeg informations such as width, height, depth or colorpsace. This was developped because imagemagick and other tools read all image data to get those header informations and for huge image (>100Mo), it takes several seconds...

Usage

jpegheader = require("jpegheader")
jpegheader.getInfos("image.jpg", function(err, infos) {
	//Infos is {width: 100, heigh: 120, bits: 8, components: 3}
});

components is the number of channels in the image : 1 is for grayscale, 3 for RGB or YCbCr, 4 for CMYK