Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

image-comparator

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-comparator

Compares images by resizing without dependencies

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

image-comparator

Compares images by resizing and checking color match without external dependencies

Install

npm install --save image-comparator

Test

npm test

Example

const fs = require("node:fs");
const comparator = require("image-comparator");

const imagePath1 = "path/to/image1.png";
const imagePath2 = "path/to/image2.png";

const imageBuffer1 = fs.readFileSync(imagePath1);
const imageBuffer2 = fs.readFileSync(imagePath2);

const areSame = await comparator.compare(imageBuffer1, imageBuffer2);

if (areSame) {
  console.log("Images are the same");
} else {
  console.log("Images are different");
}

Supported formats

  • png
  • jpg

Detection algorithm

  1. Retrieve dimensions and bitmap data from the input image buffers
  2. Resize the images to a consistent mini size
  3. Compare the resized images using the areBuffersEqual function

Notes

May produce false positives for comparison of images of different format origins due to inconsistent resulting bitmap size

Keywords

FAQs

Package last updated on 14 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc