imagepng
(PHP 4, PHP 5)
imagepng — Output a PNG image to either the browser or a file
Описание
bool imagepng
( resource $image
[, string $filename
[, int $quality
[, int $filters
]]] )
Список параметров
-
image
-
Ресурс изображения, полученный одной из функций создания изображений,
например, такой как imagecreatetruecolor().
-
filename
-
Путь для сохранения файла. Если не установлен или равен NULL, изображение будет выведено в поток вывода в бинарном виде.
Замечание:
NULL is invalid if the quality and
filters arguments are not used.
-
quality
-
Compression level: from 0 (no compression) to 9.
-
filters
-
Allows reducing the PNG file size. It is a bitmask field which may be
set to any combination of the PNG_FILTER_XXX
constants. PNG_NO_FILTER or
PNG_ALL_FILTERS may also be used to respectively
disable or activate all filters.
Возвращаемые значения
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Смотрите также
- imagegif() - Выводит изображение в браузер или пишет в файл
- imagewbmp() - Выводит изображение в браузер или пишет в файл
- imagejpeg() - Выводит изображение в браузер или пишет в файл
- imagetypes() - Return the image types supported by this PHP build
- imagesavealpha() - Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images