downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

image_type_to_mime_type> <getimagesizefromstring
[edit] Last updated: Fri, 30 Nov 2012

view this page in

image_type_to_extension

(PHP 5)

image_type_to_extensionGet file extension for image type

Opis

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

Returns the extension for the given IMAGETYPE_XXX constant.

Parametry

imagetype

One of the IMAGETYPE_XXX constant.

include_dot

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

Zwracane wartości

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

Przykłady

Przykład #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);
?>

Notatki

Informacja:

Ta funkcja nie wymaga dostępu do biblioteki GD.



image_type_to_mime_type> <getimagesizefromstring
[edit] Last updated: Fri, 30 Nov 2012
 
add a note add a note User Contributed Notes image_type_to_extension - [14 notes]