Leçon N° 17 : Création / Manipulation des images
Faire un petit dessin précisSolutionSolution & source**
Changer le sens des flèches
Notes de page
Source: lesson_17_d2_arrow_h.phpRésultat
<img src="../exercises/img_d2_arrow_h.php">



Fichier : img_d2_arrow_h.php
<?php 
header
("Content-type: image/Jpeg");  
// Create a new Image 
$im ImageCreate(40,14);  
// Fill it with your favorite background color.. 
$backgroundColor ImageColorAllocate($im232,232,192);
$lineColor ImageColorAllocate($im0,0,0);
//ImageFill($im, 0, 0, $backgroundColor);
imageline($im07157$lineColor);
imageline($im257407$lineColor);
imageline($im103187$lineColor);
imageline($im1011187$lineColor);
imageline($im30 3227$lineColor);
imageline($im3011227$lineColor);
// Interlace the image.. 
Imageinterlace($im1);  
// Output the Image to the browser in jpeg format 
ImageJpeg($im);  
// Destroy the image. 
Imagedestroy($im);  
?> 

Tous droits réservés. 2005-2020