本文整理匯總了PHP中Thumbnail::imageCreateFromString方法的典型用法代碼示例。如果您正苦於以下問題:PHP Thumbnail::imageCreateFromString方法的具體用法?PHP Thumbnail::imageCreateFromString怎麽用?PHP Thumbnail::imageCreateFromString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Thumbnail
的用法示例。
在下文中一共展示了Thumbnail::imageCreateFromString方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: imageCreate
/**
* Create a GD image resource from given input.
*
* This method tried to detect what the input, if it is a file the
* createImageFromFile will be called, otherwise createImageFromString().
*
* @param mixed $input The input for creating an image resource. The value
* may a string of filename, string of image data or
* GD image resource.
*
* @return resource An GD image resource on success or false
* @access public
* @static
* @see Thumbnail::imageCreateFromFile(), Thumbnail::imageCreateFromString()
*/
function imageCreate($input)
{
if (is_file($input)) {
return Thumbnail::imageCreateFromFile($input);
} else {
if (is_string($input)) {
return Thumbnail::imageCreateFromString($input);
} else {
return $input;
}
}
}
示例2: imageCreate
/**
* Создание GD-ресурса
*
* Метод пытается определить, какие данные пришли - если это файл,
* будет вызван метод createImageFromFile(), иначе - createImageFromString()
*
* @param mixed $input Входящие данные для создания изображения.
* Это может быть строка-имя файла, строка - данные изображения
* или GD-ресур изображения
*
* @return resource GD-ресур изображения или false в случае неудачи
* @access public
* @static
* @see Thumbnail::imageCreateFromFile(), Thumbnail::imageCreateFromString()
*/
public static function imageCreate($input)
{
if (joosFile::exists($input)) {
return Thumbnail::imageCreateFromFile($input);
} else {
if (is_string($input)) {
return Thumbnail::imageCreateFromString($input);
} else {
return $input;
}
}
}