| Package | de.popforge.imageprocessing.filters.render |
| Class | public final class Corona |
| Implements | IFilter |
This filter is based on a technique from toxie^ainc. and the C++ implementation from Hopper.
Supported formats:
var filter: Corona = new Corona(); var image: Image = new Image( 160, 120, ImageFormat.RGB ); filter.apply( image );
See also
| Method | Defined by | ||
|---|---|---|---|
|
Corona(scale:int = 0xff)
Creates a new Corona object.
| Corona | ||
|
Applies the filter to the given Image object.
| Corona | ||
|
toString():String
Builds and returns a string containing the name of the class.
| Corona | ||
| Corona | () | constructor |
public function Corona(scale:int = 0xff)Creates a new Corona object.
Parametersscale:int (default = 0xff) — The scale of the rendered corona in releation to the image size.
|
| 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.
|