Pakket | mx.utils |
Klasse | public class ColorUtil |
Overerving | ColorUtil Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
ColorUtil.adjustBrightness()
method.
Openbare eigenschappen
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
[statisch]
Performs a linear brightness adjustment of an RGB color. | ColorUtil | ||
[statisch]
Performs a scaled brightness adjustment of an RGB color. | ColorUtil | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
[statisch]
Performs an RGB multiplication of two RGB colors. | ColorUtil | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Methodedetails
adjustBrightness | () | methode |
public static function adjustBrightness(rgb:uint, brite:Number):uint
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Performs a linear brightness adjustment of an RGB color.
The same amount is added to the red, green, and blue channels of an RGB color. Each color channel is limited to the range 0 through 255.
Parameters
rgb:uint — Original RGB color.
| |
brite:Number — Amount to be added to each color channel.
The range for this parameter is -255 to 255;
-255 produces black while 255 produces white.
If this parameter is 0, the RGB color returned
is the same as the original color.
|
uint — New RGB color.
|
adjustBrightness2 | () | methode |
public static function adjustBrightness2(rgb:uint, brite:Number):uint
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Performs a scaled brightness adjustment of an RGB color.
Parameters
rgb:uint — Original RGB color.
| |
brite:Number — The percentage to brighten or darken the original color.
If positive, the original color is brightened toward white
by this percentage. If negative, it is darkened toward black
by this percentage.
The range for this parameter is -100 to 100;
-100 produces black while 100 produces white.
If this parameter is 0, the RGB color returned
is the same as the original color.
|
uint — New RGB color.
|
rgbMultiply | () | methode |
public static function rgbMultiply(rgb1:uint, rgb2:uint):uint
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Performs an RGB multiplication of two RGB colors.
This always results in a darker number than either original color unless one of them is white, in which case the other color is returned.
Parameters
rgb1:uint — First RGB color.
| |
rgb2:uint — Second RGB color.
|
uint — RGB multiplication of the two colors.
|
Wed Jun 13 2018, 11:42 AM Z