4D v16

SVG_Color_RGB_from_long

Home

 
4D v16
SVG_Color_RGB_from_long

SVG_Color_RGB_from_long 


 

SVG_Color_RGB_from_long ( Farbe {; Format} ) -> Funktionsergebnis 
Parameter Typ   Beschreibung
Farbe  Lange Ganzzahl in Value of color
Format  Ganzzahl in Format of color
Funktionsergebnis  String in Color string

The SVG_Color_RGB_from_long command returns a string expressing the color color passed as an argument. The string returned is in "RGB(red, green, blue)" form, the syntax recognized by SVG rendering engines.

The color parameter is a 4-byte longint whose format (0x00RRGGBB) is described below (the bytes are numbered from 0 to 3, from right to left):

ByteDescription
2Red component of the color (0..255)
1Green component of the color (0..255)
0Blue component of the color (0..255)

The optional format parameter can be used to specify the desired format for the color string returned. The values are:

ValueFormat
1 (default)rgb(r,g,b)
2#rgb
3#rrggbb
4rgb(r%, g%, b%)

 $txtColor:=SVG_Color_RGB_from_long($color)
  `$txtColor is "rgb(255,128,0)" if $color is 16744448 (orange)



Siehe auch 

SVG_Color_from_index
SVG_Color_grey

 
EIGENSCHAFTEN 

Produkt: 4D
Thema: Colors and Gradients
Nummer: 65925

 
GESCHICHTE 

Erstellt: Composant 4D SVG v11.3

 
ARTIKELVERWENDUNG

4D SVG ( 4D v16)