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

image-contrast

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

image-contrast

Small library to apply a contrast transformation to a image

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

image-contrast

Small library to apply a contrast transformation to a image.

Install

npm install image-contrast --save

Usage

At the moment there are two ways of usage, you either provide a image or you provide a canvas imageData.

From image:

JS file:

var imageContrast = require('image-contrast');

imageContrast({
    from: '#original',
    to: '#target-1',
    contrast: 30
});

HTML:

<img id="original" src="http://lorempixel.com/400/200" />
<div id="target-1"></div>

From canvas imageData:

var imageContrast = require('image-contrast');

var canvas = document.createElement('canvas');
var context = canvas.getContext('2d');
var img = new Image;
img.onload = function(){
    context.drawImage(img,0,0);

    var imageData = context.getImageData(0, 0, img.width, img.height);

    var result3 = imageContrast({
        imageData: imageData,
        to: '#target-3',
        contrast: 30
    });

    var result4 = imageContrast({
        imageData: imageData,
        to: '#target-4',
        contrast: 70
    });
};
img.src = "http://lorempixel.com/400/200";

From image url:

var imageContrast = require('image-contrast');

imageContrast({
    url: "http://lorempixel.com/400/200",
    to: '#target-5',
    contrast: 30
});

Keywords

FAQs

Package last updated on 05 Mar 2016

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