| Package | de.popforge.imageprocessing.filters.render |
| Class | public final class Tile |
| Implements | IFilter |
Supported formats:
var filter: Tile = new Tile(); var image: Image = new Image( 160, 120, ImageFormat.RGB ); filter.apply( image );
| Method | Defined by | ||
|---|---|---|---|
|
Tile(iterations:int = 1, smoothing:Boolean = false)
Creates a new Tile object.
| Tile | ||
|
Applies the filter to the given Image object.
| Tile | ||
|
toString():String
Builds and returns a string containing the name of the class.
| Tile | ||
| Tile | () | constructor |
public function Tile(iterations:int = 1, smoothing:Boolean = false)Creates a new Tile object.
Parametersiterations:int (default = 1) — Number of times the image should be tiled.
|
|
smoothing:Boolean (default = false) — true if tiles should be smoothed when scaling them.
|
| 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.
|