Re: [PHP] Create Image on the fly

2002-01-17 Thread val petruchek
in index.html you write img src=aaa.php in aaa.php you write ?php $im = @ImageCreate (240, 80) or die (Cannot Initialize new GD image stream); $background_color = ImageColorAllocate ($im, 255, 255, 230); $text_color = ImageColorAllocate ($im, 0, 0, 0); ImageString ($im, 3, 10, 20,

Re: [PHP] Create Image on the fly

2002-01-17 Thread Jan Grafström
Thanks Val! Now I understand. Jan Val Petruchek [EMAIL PROTECTED] skrev i meddelandet 000801c19f4a$49862950$[EMAIL PROTECTED]">news:000801c19f4a$49862950$[EMAIL PROTECTED]... in index.html you write img src=aaa.php in aaa.php you write ?php $im = @ImageCreate (240, 80) or die