Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

colormatch

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colormatch - npm Package Compare versions

Comparing version
0.0.4
to
0.0.5
+1
-1
extract.js

@@ -14,3 +14,3 @@ var spawn = require('child_process').spawn;

convert.stdout.on('data',function(data){
convert.stderr.on('data',function(data){
err += data.toString();

@@ -17,0 +17,0 @@ });

@@ -1,18 +0,27 @@

{
"name": "colormatch"
, "description": "A module for extracting colors from images and for generating lookup ranges that accept rgb and outputs ranges of rgb values for db lookups. Right now it uses ImageMagik in a child process to reduce the colorspace and return the top colors of an image. Alterntives with node-canvas or an all js jpeg decoder could be used. The latterwith the same js color quantization algorthims that would be needed to reduce the colorspace of the former."
, "version": "0.0.4"
, "author": "Ryan Day <soldair@gmail.com>"
, "contributors":["whyohwhyamihere"]
, "keywords": ["image", "indexing", "color", "search"]
, "main": "./main.js"
, "homepage":"http://github.com/soldair/node-colormatch"
, "repository":{
"type":"git"
, "url":"git://github.com/soldair/node-colormatch.git"
}
,"scripts":{
"test":"node ./test/extract.js && node ./test/match.js"
}
,"engines":{"node":">=0.6.0"}
{
"name": "colormatch",
"description": "A module for extracting colors from images and for generating lookup ranges that accept rgb and outputs ranges of rgb values for db lookups. Right now it uses ImageMagik in a child process to reduce the colorspace and return the top colors of an image. Alterntives with node-canvas or an all js jpeg decoder could be used. The latterwith the same js color quantization algorthims that would be needed to reduce the colorspace of the former.",
"version": "0.0.5",
"author": "Ryan Day <soldair@gmail.com>",
"contributors": [
"whyohwhyamihere"
],
"keywords": [
"image",
"indexing",
"color",
"search"
],
"main": "./main.js",
"homepage": "http://github.com/soldair/node-colormatch",
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-colormatch.git"
},
"scripts": {
"test": "node ./test/extract.js && node ./test/match.js"
},
"engines": {
"node": ">=0.6.0"
}
}