<img src="../exercises/dessin_b.php">
Fichier : dessin_b.php
<?php header("Content-type:image/png"); //Création de l'image avec la taille qu'elle ocupe à l'écran $myImage=imageCreate(500,500); // On définit sa couleur $myColorBleu = imageColorAllocate($myImage,0,64,128); $myColorBleu1 = imageColorAllocate($myImage,10,64,128); $myColorBeige = imageColorAllocate($myImage,142,120,109); $myColorBlack = imageColorAllocate($myImage,0,0,0); $myColorMarron = imageColorAllocate($myImage,125,106,30); $myColorJaune = imageColorAllocate($myImage,241,195,23); $myColorJaune1 = imageColorAllocate($myImage,245,170,8); //imageFill($myImage,30,0,$myColorYellow); imageArc($myImage,160,100,100,120,0,360,$myColorBleu1); imageArc($myImage,130,100,160,125,0,360,$myColorBleu1); imageFillToBorder($myImage,100,100,$myColorBleu1,$myColorJaune);
imageArc($myImage,250,500,600,125,0,360,$myColorBlack); imageFillToBorder($myImage,250,500,$myColorBlack,$myColorJaune1); //RGB(0,65,111) // On la met au format jpeg imagepng($myImage); ?>
|
|