12.
eGo,
сохранил в utf-8 без BOM.
а что там наcчёт header?
Вот как там идёт:
хотя ты сам писал, знаешь)
<?php
if($_POST){
if(isset($_POST['x'],$_POST['y'],$_POST['bgcolor'],$_POST['textcolor'],$_POST['text'])){
$_POST['x'] = intval($_POST['x']);
$_POST['y'] = intval($_POST['y']);
header ("Content-type: image/jpeg");// вот строчка из-за которой ошибка
$im = imagecreate($_POST['x'], $_POST['y']);
$bgcolor = hex2RGB($_POST['bgcolor'], 0);
$textcolor = hex2RGB($_POST['textcolor'], 0);
imagefill($im, 0, 0, imagecolorallocate($im, $bgcolor['red'], $bgcolor['green'], $bgcolor['blue']));
imagestring($im,1,1,($_POST['y']/2), $_POST['text'],imagecolorallocate($im, $textcolor['red'], $textcolor['green'], $textcolor['blue']));
imagejpeg($im);
imagedestroy($im);?>
Что тут то исправить?
*чувствую себя тупым*
Изменил: Андрей (27.05.2011 / 19:50)