image_type_to_extension

(PHP 5 >= 5.2.0, PHP 7)

image_type_to_extensionGet file extension for image type

Descrierea

image_type_to_extension ( int $imagetype [, bool $include_dot = TRUE ] ) : string

Returns the extension for the given IMAGETYPE_XXX constant.

Parametri

imagetype

One of the IMAGETYPE_XXX constant.

include_dot

Whether to prepend a dot to the extension or not. Default to TRUE.

Valorile întoarse

A string with the extension corresponding to the given image type.

Exemple

Example #1 image_type_to_extension() example

<?php
// Create image instance
$im imagecreatetruecolor(100100);

// Save image
imagepng($im'./test' image_type_to_extension(IMAGETYPE_PNG));
imagedestroy($im);
?>

Note

Notă:

Această funcție nu necesită biblioteca de prelucrare a imaginilor GD.