我是php的新手,我找到了一个关于裁剪图像的教程,其中有一条我从未见过的奇怪指令。我不知道如何搜索它。
$src_img = $image_create($source_file);
这是本教程的完整代码
//resize and crop image by center
function resize_crop_image($max_width, $max_height, $source_file, $dst_dir, $quality = 80){
$imgsize = getimagesize($source_file);
$width = $imgsize[0];
$height = $imgsize[1];
$mime = $imgsize['mime'];
switch($mime){
case 'image/gif':
$image_create = "imagecreatefromgif";
$image = "imagegif";
break;
case 'image/png':
$image_create = "imagecreatefrompng";
$image = "imagepng";
$quality = 7;
break;
case 'image/jpeg':
$image_create = "imagecreatefromjpeg";
$image = "imagejpeg";
$quality = 80;
break;
default:
return false;
break;
}
$dst_img = imagecreatetruecolor($max_width, $max_height);
$src_img = $image_create($source_file);
$width_new = $height * $max_width / $max_height;
$height_new = $width * $max_height / $max_width;
//if the new width is greater than the actual width of the image, then the height is too large and the rest cut off, or vice versa
if($width_new > $width){
//cut point by height
$h_point = (($height - $height_new) / 2);
//copy image
imagecopyresampled($dst_img, $src_img, 0, 0, 0, $h_point, $max_width, $max_height, $width, $height_new);
}else{
//cut point by width
$w_point = (($width - $width_new) / 2);
imagecopyresampled($dst_img, $src_img, 0, 0, $w_point, 0, $max_width, $max_height, $width_new, $height);
}
$image($dst_img, $dst_dir, $quality);
if($dst_img)imagedestroy($dst_img);
if($src_img)imagedestroy($src_img);
}
//usage example
resize_crop_image(100, 100, "test.jpg", "test.jpg");
答案 0 :(得分:5)
$image_create
返回一个字符串。
这种刺痛是动态函数(其名称取决于运行时间)
参考:
http://php.net/manual/en/functions.variable-functions.php
而不是添加3个if语句来选择三个函数:
imagecreatefromgif()
,imagecreatefrompng()
和imagecreatefromjpeg()
,
取一个变量,它将切换函数变量(名称)并将使用它。
哪个更容易使用。
答案 1 :(得分:5)
首先:我不知道您正在关注哪个教程,但它看起来并不是特别好。在我看来,代码看起来非常混乱,有点陈旧。它也根本不跟the coding standards ...我明确指出。
回答你的问题:
$image_create = 'imagecreatefromjpeg';
乍一看,正在为变量分配一个字符串,但该字符串恰好是a function name。基本上,请阅读:
$src_img = $image_create($source_file);
作为三个电话之一:
$src_img = imagecreatefromjpeg($source_file);
//or
$src_img = imagecreatefrompng($source_file);
//or
$src_img = imagecreatefromgif($source_file);
取决于$image_create
...
答案 2 :(得分:2)
它通过包含函数名称的变量调用函数。
请注意,$image_create
的设置取决于代码尝试创建的图像类型。这样就可以合并其他不关心图像类型的代码,这是一种很好的做法。
答案 3 :(得分:0)
换句话说...
src_img = imagecreatefromjpeg($source_file);
与...相同...
$image_create = 'imagecreatefromjpeg';
src_img = $image_create($source_file);