ich habe das problem das bei diesem script mit header ("Content-type: image/jpeg"); der header ja auf jpeg umgestellt wird.... nun werden alle html ausgaben unterdrückt..... kann mann den header irgendwie, nachdem das bild erstellt wurde wieder auf html umstellen??? (das script läuft in einem JS PopUp)
Script:
THX
Joat
Script:
PHP-Code:
<?
header ("Content-type: image/jpeg");
$text ="(c) 2003 by JOat";
$im = ImageCreatefromjpeg("$file");
$background_color = ImageColorAllocate ($im, 0, 00, 00);
$text_color = ImageColorAllocate ($im, 255, 255, 255);
ImageString ($im, 5, 2, ($h-20), $text, $text_color);
Imagejpeg ($im);
?>
<BODY bgcolor=#00ff00>
<table width="<?php echo $b; ?>" border="0" cellspacing="0" align="center">
<tr>
<td height="<?php echo $h; ?>"><img src="<?php echo $im; ?>"</td>
</tr>
</table>
THX
Joat
Kommentar