我遇到了从上传的图像文件创建缩略图然后将其上传到服务器的问题。
截至目前,我有一个创建缩略图的函数,将其保存为临时文件并将其返回给调用者。
然后我尝试做的是使用 move_uploaded_file(tempthumb, path); 上传创建的拇指图像。
这是 createThumb 函数和调用者:
function createThumb( $image, $thumbWidth )
{
// load image and get image size
$img = imagecreatefromjpeg( "{$image}" );
$width = imagesx( $img );
$height = imagesy( $img );
// calculate thumbnail size
$new_width = $thumbWidth;
$new_height = floor( $height * ( $thumbWidth / $width ) );
// create a new temporary image
$tmp_img = imagecreatetruecolor( $new_width, $new_height );
// copy and resize old image into new image
imagecopyresized( $tmp_img, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
return $tmp_img;
}
return $tmp_img; // Here I return the new image. Is this the proper way to get a binary image back??
这是调用者:
$thumb = createThumb($_FILES['propform-previmg']['tmp_name'], $max_previmg_width);
$filenamepath = $src_dir . '/thumb/' . $_FILES['propform-previmg']['name'];
if ( !move_uploaded_file($thumb, $filenamepath ))
echo "Error moving file {$filenamepath}";
我尝试直接上传上传的文件而不尝试先制作缩略图,效果很好。所以我猜我从 createThumb 函数返回的变量有一些错误,但我无法弄清楚到底是什么。
另外,我需要从调用者代码上传,而不是在带有 imagejpeg(file, path) 的 createThumb 函数中。
谢谢!