astano | Hi!
J'ai un problème pour faire fonctionner la librairie gd.
J'ai l'exemple suivant :
Code :
- <html>
- <head>
- <meta http-equiv="content-type" content="image/png; charset=iso-8859-1" />
- </head>
- <table>
- <tr>
- <td colspan="2"><h1>Titre</h1></td>
- </tr>
- <tr>
- <td colspan="2">
- <?php
- $img_handle = ImageCreate (230, 20) or die ("Cannot Create image" );
- $back_color = ImageColorAllocate ($img_handle, 0, 10, 10);
- $txt_color = ImageColorAllocate ($img_handle, 233, 114, 191);
- ImageString ($img_handle, 31, 5, 5, "My first Program with GD", $txt_color);
- ImagePng ($img_handle);
- ?>
- </td>
- </tr>
- </table>
- <html>
|
Le problème est qu'il affiche le code png à la place du graphique. (PNG IHDRæ)
Si quelqu'un a la solution.
Merci pour votre aide.
++ Message édité par astano le 24-07-2006 à 14:21:14
|