Crop image in circle (php)

后端 未结 3 1788
长情又很酷
长情又很酷 2021-02-06 05:28

The following code works on my laptop but doesn\'t work on remote server:



        
3条回答
  •  春和景丽
    2021-02-06 06:00

    I think you might have problems with filepath. Check if pathinfo returns valid extension and add after $filename declaration something to check if it exists and is readable

    if(!is_file($file) || !is_readable($file)){ die('Readable file not found');}
    

提交回复
热议问题