titione addicted | bonjour,
je suis en train de manipuler des images et MES fonctions ne marchent pas.
exemple :
Code :
- $image = imagecreate(800,600);
- $fillColor = imagecolorallocate($image,0,0,0);
- imagepolygon($image, array(0,0,100,100) , 2 , $fillColor);
- header("Content-type: image/png" );
- imagepng($image);
|
ça, ça marche mais quand je fais ça plus rien ne va :
Code :
- function drawL(&$img)
- {$fillColor = imagecolorallocate($img,0,0,0);
- imagepolygon($img, array(0,0,100,100) , 2 , $fillColor);
- }
- $image = imagecreate(800,600);
- drawL($image);
- header("Content-type: image/png" );
- imagepng($image);
|
j'ai beau cherché je ne vois pas la cause à part dans un mauvais passage d'argument... mais comment faire ??
merci d'avance
|