Как задать фон изображения?
1.
1angell (26.05.2010 / 12:58)
ЕСть код:
$filename='files/'.$image;
header ("Content-type: image/jpeg");
$img=imagecreatefromstring(file_get_contents($filename));
$dest=imagecreatetruecolor($ism_w,$ism_h);
$width=imagesx($img);
$height=imagesy($img);
imagecopyresized($dest,$img,0,0,0,0,$ism_w,$ism_h,$width,$height);
imagejpeg($dest,'',80);
imagedestroy($img);
2.
1angell (26.05.2010 / 12:58)
Но стандартно темный цвет - а нужно белый.
3.
Azzido (26.05.2010 / 13:10)
imagefill($img,0,0,imagecolorallocate($image,255,255,255));
4.
1angell (26.05.2010 / 13:13)
3.
Azzido, спасибо
5.
1angell (26.05.2010 / 13:14)
И еще вопрос - а как зделать прозрачной цвет?
6.
Azzido (26.05.2010 / 13:26)
цвет чего
7.
1angell (26.05.2010 / 13:30)
6.
Azzido,чтобы фон рисунка был прозрачен.
8.
Azzido (26.05.2010 / 13:35)
насколько я помню это атрибут transparent, то есть задаешь в css background-color: transparent; или style="background-color:transparent" я в графике и дизайне не очень разбираюсь
9.
1angell (26.05.2010 / 13:43)
8.
Azzido, но все ровно спасибо. Тему кройте.
URL:
https://visavi.net/topics/9834