Chez Пользователь Сейчас: Offline
Имя: Павел Регистрация: 30.01.2020
| FlyMove, function fly_move() { // Создаю картинку 100*100 $img = imagecreatetruecolor(100, 100);
// присваеваю цвета $red = imagecolorallocate($img, 255, 0, 0); $green = imagecolorallocate($img, 0, 255, 0); $blue = imagecolorallocate($img, 0, 0, 255);
// рисую imageline($img, 40, 30, 40, 40, $green); imageline($img, 50, 30, 50, 40, $green); imageline($img, 45, 38, 45, 39, $green);
imageline($img, 37, 45, 53, 45, $green); imageline($img, 37, 43, 37, 45, $green); imageline($img, 53, 43, 53, 45, $green);
// Вывожу в арбуз imagepng($img, "./image.png");
return "<img src='./image.png'/>" } echo fly_move();
|