| |
| * Link führt ins Internet |
|

| |
Befehl | Version | Beschreibung | Beispiel | Ausgabe |
Befehl
| int imagecolorstotal ( resource $im ) |
Version
Beschreibung
Beispiel
<?PHP
$image = imagecreate ( 300, 150 );
$farbe_body=imagecolorallocate ( $image, 243, 243, 243 );
$farbe_b = imagecolorallocate ( $image, 10, 36, 106 );
$headline = imagecolorallocate ( $image, 60, 76, 144 );
echo imagecolorstotal ( $image );
?>
|
Ausgabe
|
|
|
|
|
|


|