Giter Club home page Giter Club logo

hsi.js's Introduction

hsi.js is a small javascript library which converts HSI and RGB to each other.

Examples

Conversion from RGB to HSI


	hsi = toHSI(255, 0, 0); // [0, 1, 0.3333]

you can use various RGB formats.


	hsi1 = toHSI(255, 0, 0);

	hsi2 = toHSI([255, 0, 0]);
	hsi3 = toHSI('#FF0000');
	hsi4 = toHSI('#ff0000');
	hsi5 = toHSI('rgb(255,0,0)');	

	// all results will be the same. [0, 1, 0.3333]

Conversion from HSI to RGB


	rgb1 = toRGB(0, 1, 0.3333); // [255, 0, 0]
	rgb2 = toRGB([0, 1, 0.3333]); // [255, 0, 0]

	pink = toRGB(300, 1, 0.6666); // [255, 0, 255]

Other Usages

you can generate colors using HSI features.


	//generate pastel-tone color.
	pastel = toRGB(Math.floor(Math.random() * 360), 0.3, 1); 

	//generate vivid color.
	vivid = toRGB(Math.floor(Math.random() * 360), 1, 1);

Tested Environments

  • Safari
  • Google Chrome
  • Internet Explorer 6+
  • FireFox

Licences

GPL

hsi.js (HSI <-> RGB conversion javascript library) Copyright (C) 2011-2015 Jaemin Jo

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

hsi.js's People

Contributors

jaeminjo avatar davebalmer avatar e- avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.