| Package | de.popforge.imageprocessing.filters.render |
| Class | public final class OldschoolPlasma |
| Implements | IFilter |
Supported formats:
var filter: OldschoolPlasma = new OldschoolPlasma(); var image: Image = new Image( 160, 120, ImageFormat.RGB ); filter.apply( image );
| Method | Defined by | ||
|---|---|---|---|
|
OldschoolPlasma(monochrom:Boolean = false)
Creates a new OldschoolPlasma object.
| OldschoolPlasma | ||
|
Applies the filter to the given Image object.
| OldschoolPlasma | ||
|
toString():String
Builds and returns a string containing the name of the class.
| OldschoolPlasma | ||
| OldschoolPlasma | () | constructor |
public function OldschoolPlasma(monochrom:Boolean = false)Creates a new OldschoolPlasma object. For the first time an OldschoolPlasma is created that is not in monochromatic mode it will cache three look-up tables to map the colors. Theese tables will stay in the cache and a second instance would not have to calculate the same tables.
Parametersmonochrom:Boolean (default = false) — true uses the same color for all channels.
|
| apply | () | method |
public function apply(image:Image):voidApplies the filter to the given Image object.
Parametersimage:Image — The image that will be manipulated.
|
| toString | () | method |
public function toString():StringBuilds and returns a string containing the name of the class.
ReturnsString — A string containing the name of the class.
|