PHP:如何检查file_get_contents()的结果字符串是否是JPG图像?

时间:2013-03-22 14:06:08

标签: php

我正在使用file_get_contents()从远程服务器提取一些图像,我想在进一步处理之前确认结果字符串是否为JPG / PNG图像,例如在本地保存并创建拇指。

$string = file_get_contents($url);

你会怎么做?

4 个答案:

答案 0 :(得分:4)

您可以使用getimagesize()

$url = 'http://www.geenstijl.nl/archives/images/HassVivaCatFight.jpg';
$file = file_get_contents($url);
$tmpfname = tempnam("/tmp", "FOO");
$handle = fopen($tmpfname, "w");
fwrite($handle, $file);

$size = getimagesize($tmpfname);
if(($size['mime'] == 'image/png') || ($size['mime'] == 'image/jpeg')){
   //do something with the $file
   echo 'yes an jpeg of png';
}
else{
    echo 'Not an jpeg of png ' . $tmpfname .' '. $size['mime']; 
    fclose($handle);
}

我刚试过它,所以它有效。您需要创建一个临时文件,因为图像函数使用本地数据,它们只接受本地目录路径,如'C:\ wamp2 \ www \ temp \ image.png'

如果你不使用fclose($handle); PHP将在脚本结束后自动删除tmp。

答案 1 :(得分:2)

您可以使用

exif_imagetype()

评估您的文件。请查看php手册。

已编辑:

请注意,必须启用PHP_EXIF。您可以阅读更多相关信息here

答案 2 :(得分:2)

我从answer获得了JPG图像的起始位。所以基本上你可以做的是检查起始位是否相等:

$url = 'http://i.stack.imgur.com/Jh3mC.jpg?s=128&g=1';
$jpg = file_get_contents($url);

if(substr($jpg,0,3) === "\xFF\xD8\xFF"){
    echo "It's a jpg !";
}

答案 3 :(得分:1)

也许是标准的PHP函数exif_imagetype()http://www.php.net/manual/en/function.exif-imagetype.php