这几天解决了一个困扰已久的问题,我的博客系统在文章上传图片生成缩略图时,在本地测试环境没有任何问题,但在服务器环境中总是生成缩略图失败,报错:"Implicit conversion from float"。排查了 PHP 和环境扩展组件库、目录权限、图片格式大小等都没有问题。在百思不得其解时,我注意到了一个平时不太注意的细节,我在本地测试环境用的是 PHP 8.0,服务器上用的是 PHP 8.1,经过反复测试问题果然出在这里。
由于生成缩略图时会对图片进行宽高尺寸和比例计算,然后对图片进行等比例缩放和裁切,生成相应尺寸的缩略图。在 PHP 8.1 中,报错 "Implicit conversion from float" 通常是因为在代码中将一个浮点数转换为了整数,而这个浮点数可能无法精确地表示为整数,从而导致了这个错误,而在 PHP 8.0 中没有这么严格的判定,则不会报错。
要解决这个问题,可以采取以下几种方法:
使用 (int) 强制转换:如果你确定要将浮点数转换为整数,可以使用 (int) 来强制转换。这将确保将浮点数舍入为最接近的整数。例如:
$floatValue = 10.5;
$intValue = (int)$floatValue; // 将浮点数转换为整数
使用 floatval() 函数:floatval() 函数可以将一个字符串或变量转换为浮点数。如果你不确定一个变量是否为浮点数,可以使用该函数来确保将其转换为浮点数。例如:
$value = "10.5";
$floatValue = floatval($value); // 将字符串转换为浮点数
避免隐式转换:在编写代码时,尽量明确地进行类型转换,而不是依赖于隐式转换。使用 (int) 或 (float) 来明确地指定你要进行的类型转换。例如:
$floatValue = 10.5;
$intValue = (int)$floatValue; // 明确转换
$floatValue2 = (float)$intValue; // 明确转换
这是我用的缩略图生成类:
<?php
// 应用公共文件
/**
* 居中裁剪图片
* @param string $source [原图路径]
* @param int $width [设置宽度]
* @param int $height [设置高度]
* @param string $target [目标路径]
* @return bool [裁剪结果]
*/
function image_center_crop($source, $width, $height, $target)
{
if (!file_exists($source)) return false;
/* 根据类型载入图像 */
switch (exif_imagetype($source)) {
case IMAGETYPE_JPEG:
$image = imagecreatefromjpeg($source);
break;
case IMAGETYPE_PNG:
$image = imagecreatefrompng($source);
break;
case IMAGETYPE_GIF:
$image = imagecreatefromgif($source);
break;
}
if (!isset($image)) return false;
/* 获取图像尺寸信息 */
$target_w = $width;
$target_h = $height;
$source_w = imagesx($image);
$source_h = imagesy($image);
/* 计算裁剪宽度和高度 */
$judge = (($source_w / $source_h) > ($target_w / $target_h));
$resize_w = $judge ? ($source_w * $target_h) / $source_h : $target_w;
$resize_h = !$judge ? ($source_h * $target_w) / $source_w : $target_h;
$start_x = $judge ? ($resize_w - $target_w) / 2 : 0;
$start_y = !$judge ? ($resize_h - $target_h) / 2 : 0;
/* 绘制居中缩放图像 */
$resize_img = imagecreatetruecolor($resize_w, $resize_h);
imagecopyresampled($resize_img, $image, 0, 0, 0, 0, $resize_w, $resize_h, $source_w, $source_h);
$target_img = imagecreatetruecolor($target_w, $target_h);
imagecopy($target_img, $resize_img, 0, 0, $start_x, $start_y, $resize_w, $resize_h);
/* 将图片保存至文件 */
if (!file_exists(dirname($target))) mkdir(dirname($target), 0777, true);
switch (exif_imagetype($source)) {
case IMAGETYPE_JPEG:
imagejpeg($target_img, $target);
break;
case IMAGETYPE_PNG:
imagepng($target_img, $target);
break;
case IMAGETYPE_GIF:
imagegif($target_img, $target);
break;
}
return boolval(file_exists($target));
}
知道问题的所在了,通过使用 (int) 进行显式转换,确保传递给图像处理函数的参数是整数类型,从而避免隐式类型转换错误。修改后的第 41 - 44 行代码:
$resize_img = imagecreatetruecolor((int)$resize_w, (int)$resize_h);
imagecopyresampled($resize_img, $image, 0, 0, 0, 0, (int)$resize_w, (int)$resize_h, (int)$source_w, (int)$source_h);
$target_img = imagecreatetruecolor((int)$target_w, (int)$target_h);
imagecopy($target_img, $resize_img, 0, 0, (int)$start_x, (int)$start_y, (int)$resize_w, (int)$resize_h);
本站原创内容,如需转载请注明来源:https://www.liutonghui.com/231.html
评论列表(0条)
暂时没有评论!