检查文件是否为空 imagecreatefromgif - php

Check file is empty imagecreatefromgif - php

我正在使用 PHP 显示来自文件的图像。我的代码看起来像这样

$image = @imagecreatefromgif(../ProfileIcons/".$use);

$text_color = imagecolorallocate($image, $r, $g, $b);
imagestring($image,$font_size,14,4, $code, $text_color);

header('Content-Type: image/gif');
$kk = imagegif($image);

imagedestroy($image);

这里如何检查 ProfileIcons/ 中的图像是否为空?

我必须提出一个条件

if (image is present in `ProfileIcons/`) 

   $image = @imagecreatefromgif(../ProfileIcons/".$use);

else (image is not present in the folder)

   $image = Show default image

如何实现?

尝试调查 file_exists

if (file_exists($filePath)) {
// process image
} else {
// use default image
}
 // check if file exist 
  if(file_exists('../ProfileIcons/'.$use.''))
  {// do what you like }else{//}