imagecreatetruecolor():无效的图像尺寸

时间:2017-07-20 20:58:02

标签: php html css

我正在尝试使用PHP调整图像大小,但问题出现了:

  

... imagecreatetruecolor():图像尺寸无效......

好像图片没有宽度和高度

$upload_dir= $_SERVER['DOCUMENT_ROOT'];
$file= $_FILES['file']['tmp_name']; 
$filename= $_FILES['file']['name'];

$obj->image= $_FILES['file']['tmp_name']
list($width, $height) = $file;
$width= (int)$width;
$height= (int)$height;
$newimage= imagecreatetruecolor($width, $height);

<form method="POST"  enctype="multipart/form-data" action="phpfile.php">
<input name="file" type="file" id="file">
<td><input type="submit" value="send"></td>

</form>

请帮帮我。这有什么问题?我尝试打印$width$height,但在屏幕上打印00

0 个答案:

没有答案