0.1.0 • Published 12 years ago

gettype v0.1.0

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

##GetType

A simple tool to get the real format of a binary file(Currently only png|jpeg|gif|bmp)

监测二进制文件的真实文件格式(目前只有常见的图片格式:png|jpeg|gif|bmp

###Install 安装

###Usage 使用

var GetType = require( 'getType' );
var pathToParse = 'images/jpeg.jpg';

GetType.parse( pathToParse, function( err, type ){

	if( err ){
		console.log( 'file format parse error!' );
	}
	else {
		console.log( 'file format is : ' + type );
	}
});
0.1.0

12 years ago

0.0.1

12 years ago