我正在尝试使用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
,但在屏幕上打印0
和0
。