任何人都可以帮我调整核心php中的图片大小。任何人都可以为我编写代码来使用核心php调整图像大小。这是我的代码:
public function add_images(){
$image=$_FILES['file'];
if(!empty($image)){
if($image['error']==0){
$imgName = pathinfo($_FILES['file']['name']);
$ext = $imgName['extension'];
$rand=mt_rand(5,1000000000).'.'.$ext;
$destination = base_path() . '/public/images/ListingImages/';
if(move_uploaded_file($image['tmp_name'], $destination.$rand)){
echo "moved"; die;
}
}
}
}
这段代码对我来说很好。但是当用户上传图像时,应将其大小调整为300x300。