1.1.4 • Published 6 months ago

@types/extract-colors v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/extract-colors

Summary

This package contains type definitions for extract-colors (https://github.com/Namide/extract-colors).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/extract-colors.

index.d.ts

// Type definitions for extract-colors 1.1
// Project: https://github.com/Namide/extract-colors
// Definitions by: Matt <https://github.com/punctuations>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/**
 *
 * @param src String for a path of image, Image or ImageData.
 * @param options Optional parameters.
 */
export function extractColors(src: string, options?: Options): Promise<Colors[]>;
export function extractColorsFromSrc(src: string, option?: Options): Colors[];
export function extractColorsFromImageData(imageData: string, option?: Options): Colors[];

export interface Options {
    /**
     * Total pixel number of the resized picture for calculation
     * @default 10000
     */
    pixels?: number;
    /**
     * From 0 to 1 is the color distance to not have near colors (1 distance is between white and black)
     * @default 0.2
     */
    distance?: number;
    /**
     * Power of the saturation weight during the process (0 is not used, 1 is only saturation and not area size)
     * @default 0.2
     */
    saturationImportance?: number;
    /**
     * Approximation power in the first color splitting during process (from 2 to 16)
     * @default 10
     */
    splitPower?: number;
    /**
     * Callback to enable only some colors
     * @param red
     * @param green
     * @param blue
     * @param alpha
     */
    colorValidator?: (red: number, green: number, blue: number, alpha: number) => void;
    /**
     * Only for browser, can be 'Anonymous' to avoid CORS
     * @default null
     */
    crossOrigin?: string;
}

interface Colors {
    /**
     * Color in hexadecimal string
     * @example '#62342b'
     */
    hex: string;
    /**
     * Red canal from 0 to 255
     * @example 98
     */
    red: number;
    /**
     * Green canal from 0 to 255
     * @example 52
     */
    green: number;
    /**
     * Blue canal from 0 to 255
     * @example 43
     */
    blue: number;
    /**
     * Area of the color and his neighbouring colors from 0 to 1
     * @example 0.5915
     */
    area: number;
    /**
     * Color saturation from 0 to 1
     * @example 0.2156862
     */
    saturation: number;
}

export {};

Additional Details

  • Last updated: Sat, 03 Jul 2021 20:31:14 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Matt.

1.1.4

6 months ago

1.1.3

7 months ago

1.1.2

8 months ago

1.1.1

2 years ago

1.1.0

3 years ago