| Package | de.popforge.imageprocessing.filters.color |
| Class | public final class Curves |
| Inheritance | Curves LUTFilter |
f(x) = x.
The curves filter replaces this and each color value will be calculated
using f(x) = curve(x).
Supported formats:
var curve: Curve = new Curve(); curve.addPoint( new Point( 0x40, 0x80 ) ); var filter: Curves = new Curves( curve ); var image: Image = new Image( 160, 120, ImageFormat.RGB ); filter.apply( image );
See also
| Method | Defined by | ||
|---|---|---|---|
| Curves | |||
| Curves | |||
![]() |
toString():String
Builds and returns a string containing the name of the class.
| LUTFilter | |