Leçon N° 17 : Création / Manipulation des images
Arcs de cercleSolutionSolution & source**
Comment faire pour que le pac-man soit derrière léléphant ?
Notes de page
Source: lesson_17_d0_image_arc.phpRésultat
<img src="../exercises/img_d0_image_arc.php">



Fichier : img_d0_image_arc.php
<?php
$image 
imagecreatefromjpeg("../images/elephant_8.jpg");
$colorYellow imagecolorallocate($image2552550);
//dessine cercle
imagearc($image1005010010090360$colorYellow);
imageline($image10050100100$colorYellow);
imageline($image1005015050$colorYellow);

//remplit l'extérieur du cercle en Magenta
imagefilltoborder($image9040,    $colorYellow,    $colorYellow);

//send image to browser
header("Content-type: image/png");
imagepng($image);
?>

Tous droits réservés. 2005-2020