| Package | de.popforge.imageprocessing.filters.color |
| Class | public class QuickSepia |
| Inheritance | QuickSepia ColorMatrix NativeFilter |
This filter is doing the same job as the Sepia filter is doing with a different technique. While the Sepia filter is using the YIQ color-space this filter applies a ColorMatrix on the image. This is faster but the effect is not as good as the one achieved by the original Sepia filter.
Supported formats:
var filter: QuickSepia = new QuickSepia(); var video: WebCam = new WebCam( 160, 120 ); var image: Image = new Image( 160, 120, ImageFormat.RGB ); image.loadBitmapData( video.getCurrentFrame(), true ); filter.apply( image );
See also
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new QuickSepia object.
| QuickSepia | ||
![]() |
Applies the filter to the given Image object.
| NativeFilter | |
|
toString():String
Builds and returns a string containing the name of the class.
| QuickSepia | ||
| QuickSepia | () | constructor |
public function QuickSepia()Creates a new QuickSepia object.
| toString | () | method |
public override function toString():StringBuilds and returns a string containing the name of the class.
ReturnsString — A string containing the name of the class.
|