5.3.2 • Published 8 months ago

image-hash v5.3.2

Weekly downloads
825
License
MIT
Repository
github
Last release
8 months ago

image-hash

A wrapper around block-hash to easily hash a local or remote file with Node.

Supports JPG, PNG and WebP

Install

npm i -S image-hash

Use

const { imageHash }= require('image-hash');

// remote file simple
imageHash('https://ichef-1.bbci.co.uk/news/660/cpsprodpb/7F76/production/_95703623_mediaitem95703620.jpg', 16, true, (error, data) => {
  if (error) throw error;
  console.log(data);
  // 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});

// remote file with requestjs config object
const config = {
  uri: 'https://ichef-1.bbci.co.uk/news/660/cpsprodpb/7F76/production/_95703623_mediaitem95703620.jpg'
};

imageHash(config, 16, true, (error, data) => {
  if (error) throw error;
  console.log(data);
  // 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});

//local file
imageHash('./_95695590_tv039055678.jpg', 16, true, (error, data) => {
  if (error) throw error;
  console.log(data);
  // 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});

//Buffer
const fBuffer = fs.readFileSync(__dirname + '/example/_95695591_tv039055678.jpeg');
imageHash({
  ext: 'image/jpeg',
  data: fBuffer
}, 16, true, (error, data) => {
  if(error) throw error;
  console.log(data);
  // 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});

//Buffer, without ext arg
const fBuffer = fs.readFileSync(__dirname + '/example/_95695591_tv039055678.jpeg');
imageHash({
  data: fBuffer
}, 16, true, (error, data) => {
  if(error) throw error;
  console.log(data);
  // 0773063f063f36070e070a070f378e7f1f000fff0fff020103f00ffb0f810ff0
});

API

// name
imageHash(location, bits, precise, callback);

// types
imageHash(string|object, int, bool, function);

SETTINGS

Image hash will log out warnings if environment variable VERBOSE is set to true.

Image-Hash Arguments

ArgumentTypeDescriptionMandatoryExample
locationobject or stringA RequestJS Object, Buffer object (See input types below for more details), or String with a valid url or file locationYessee above
bitsintThe number of bits in a row. The more bits, the more unique the hash.Yes8
preciseboolWhether a precision algorithm is used. true Precise but slower, non-overlapping blocks. false Quick and crude, non-overlapping blocks. Method 2 is recommended as a good tradeoff between speed and good matches on any image size. The quick ones are only advisable when the image width and height are an even multiple of the number of blocks used.Yestrue
callbackfunctionA function with error and data arguments - see below

Location Object Types

// Url Request Object
interface UrlRequestObject {
  encoding?: string | null,
  url: string | null,
};

// Buffer Object
interface BufferObject {
  ext?: string, // mime type of buffered file
  data: Buffer,
  name?: string // file name for buffered file
};

Callback Arguments

ArgumentTypeDescription
errorError Object or nullIf a run time error is detected this will be an Error Object, otherwise null
datastring or nullIf there is no run time error, this be will be your hashed result, otherwise null

Development

I have made this with Typescript, ESLint, Jest, Babel and VSCode. All config files and global binaries are included. For developers using VS Code, make sure you have ESLint extension installed.

Testing

npm test

Credit

The hard bit of this comes with thanks from commonsmachinery for blockhash-js

License

Distributed under an MIT license

5.3.2

8 months ago

5.3.1

2 years ago

5.2.1

2 years ago

5.0.2

2 years ago

5.0.1

2 years ago

4.0.1

4 years ago

3.5.1

5 years ago

3.4.1

5 years ago

3.3.9

5 years ago

3.3.7

5 years ago

3.3.1

5 years ago

3.2.1

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.3

5 years ago

3.0.2

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.0.0

6 years ago

1.3.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

0.0.1

7 years ago