项目作者: dashedstripes

项目描述 :
📸 A collection of low level image manipulation filters.
高级语言: JavaScript
项目地址: git://github.com/dashedstripes/image-filters.git
创建时间: 2017-10-03T15:55:58Z
项目社区:https://github.com/dashedstripes/image-filters

开源协议:

下载


Image Filters

A collection of low level image manipulation filters.

Getting Started

Each method takes an ImageData object that can be obtained from

  1. context.getImageData()

Available methods

  1. filter.grayscale(imageData) // Returns a grayscale version of the image
  2. filter.outrun(imageData) // Returns a purple toned version
  3. filter.convolution(imageData, filter.sharpen)
  4. filter.convolution(imageData, filter.gaussian)
  5. filter.convolution(imageData, filter.motionBlur)
  6. filter.convolution(imageData, filter.edges)
  7. filter.convolution(imageData, filter.emboss)

After returning the new imageData, you will be able to render it to the canvas with

  1. canvas.context.putImageData(newImageData, 0, 0)

Examples

Original

Original

Outrun

Outrun

Shouts to r/outrun.

Motion Blur

Motion Blur

Grayscale, Sepia, and Gaussian

Grayscale, Sepia, and Gaussian

Sources

Based on information found in this article: http://lodev.org/cgtutor/filtering.html