All Projects → lovell → icc

lovell / icc

Licence: Apache-2.0 license
JavaScript module to parse International Color Consortium (ICC) profiles

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to icc

tc-lib-color
PHP library to manipulate various color representations
Stars: ✭ 19 (-48.65%)
Mutual labels:  color, colour
colored-console
🌈 Add some color to your console >_
Stars: ✭ 74 (+100%)
Mutual labels:  color, colour
dehex
🎨👀 R package: learn to assess a colour hex code by eye
Stars: ✭ 29 (-21.62%)
Mutual labels:  color, colour
Metadata Extractor
Extracts Exif, IPTC, XMP, ICC and other metadata from image, video and audio files
Stars: ✭ 1,972 (+5229.73%)
Mutual labels:  metadata, icc
color-math
Expressions to manipulate colors.
Stars: ✭ 18 (-51.35%)
Mutual labels:  color, parse
Forensic Tools
A collection of tools for forensic analysis
Stars: ✭ 204 (+451.35%)
Mutual labels:  metadata, parse
colr pickr
Colr Pickr, a vanilla JavaScript color picker component built with SVGs, with features like saving colors. Similar design to the chrome-dev-tools color picker.
Stars: ✭ 27 (-27.03%)
Mutual labels:  color, colour
stellarized
✦ paint vim with the stars ✦
Stars: ✭ 70 (+89.19%)
Mutual labels:  color, colour
colour-nuke
Colour - Nuke
Stars: ✭ 145 (+291.89%)
Mutual labels:  color, colour
leeks.js
Simple ANSI styling for your terminal
Stars: ✭ 12 (-67.57%)
Mutual labels:  color, colour
Metascraper
Scrape data from websites using Open Graph, HTML metadata & fallbacks.
Stars: ✭ 1,254 (+3289.19%)
Mutual labels:  metadata, parse
colour-notebooks
Colour - Jupyter Notebooks
Stars: ✭ 21 (-43.24%)
Mutual labels:  color, colour
Chromatism
🌈 A simple set of utility functions for colours.
Stars: ✭ 1,763 (+4664.86%)
Mutual labels:  color, colour
icecast-parser
Node.js module for getting and parsing metadata from SHOUTcast/Icecast radio streams
Stars: ✭ 66 (+78.38%)
Mutual labels:  metadata, parse
php-invert-color
Invert a given color.
Stars: ✭ 13 (-64.86%)
Mutual labels:  color, colour
SwiftColorWheel
Delightful color picker wheel for iOS in Swift.
Stars: ✭ 37 (+0%)
Mutual labels:  color, colour
shades
Simple colour manipulation in R
Stars: ✭ 70 (+89.19%)
Mutual labels:  color, colour
prismatic
color manipulation R package Simply and Tidy
Stars: ✭ 121 (+227.03%)
Mutual labels:  color, colour
colour
Validate colours.
Stars: ✭ 31 (-16.22%)
Mutual labels:  color, colour
ParseCareKit
Securely synchronize any CareKit 2.1+ based app to a Parse Server Cloud. Compatible with parse-hipaa.
Stars: ✭ 28 (-24.32%)
Mutual labels:  parse

icc

JavaScript module to parse International Color Consortium (ICC) profiles.

Installation

npm install icc

Usage

import { parse } from 'icc';
const profileData = fs.readFileSync('sRGB_IEC61966-2-1_black_scaled.icc');
const profile = parse(profileData);
console.dir(profile);

outputs:

{ version: '2.0',
  intent: 'Perceptual',
  deviceClass: 'Monitor',
  colorSpace: 'RGB',
  connectionSpace: 'XYZ',
  description: 'sRGB IEC61966-2-1 black scaled',
  deviceModelDescription: 'IEC 61966-2-1 Default RGB Colour Space - sRGB',
  viewingConditionsDescription: 'Reference Viewing Condition in IEC 61966-2-1',
  copyright: 'Copyright International Color Consortium'}

API

parse(data)

Parses data, a Buffer containing a raw ICC profile, returning an Object of key/value pairs.

Licence

Copyright 2015, 2017, 2020 Lovell Fuller

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].