Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
image_type_to_extension
(PHP 5)
image_type_to_extension — Get file extension for image type
Описание
string image_type_to_extension ( int $imagetype [, bool $include_dot = TRUE ] )Returns the extension for the given IMAGETYPE_XXX constant.
Список параметров
imagetype -
One of the IMAGETYPE_XXX constant.
include_dot -
Whether to prepend a dot to the extension or not. Default to TRUE.
Возвращаемые значения
A string with the extension corresponding to the given image type.
Примеры
Пример #1 image_type_to_extension() example
// Create image instance
$im = imagecreatetruecolor(100, 100);
// Save image
imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG));
imagedestroy($im);
Примечания
Замечание:
Этой функции не требуется библиотека GD.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru