|
imagegif(PHP 4, PHP 5) imagegif — Выводит изображение в браузер или пишет в файл Описание
bool imagegif
( resource $image
[, string $filename
] )
imagegif() creates the GIF file in filename from the image image. The image argument is the return from the imagecreate() or imagecreatefrom* function. The image format will be GIF87a unless the image has been made transparent with imagecolortransparent(), in which case the image format will be GIF89a. Список параметров
Возвращаемые значенияВозвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки. Примеры
Пример #1 Outputting an image using imagegif()
<?php Пример #2 Converting a PNG image to GIF using imagegif()
<?php Примечания
Смотрите также
|
|