当前位置:   article > 正文

php图片类型,php怎么判断图片类型

图片类型 php

php判断图片类型的方法:首先获取图片来源;然后定义一个“pictype”方法;接着在方法体内通过“file_get_contents”等函数实现判断图片类型的逻辑;最后输出图片类型即可。

7945ac619517b4e44dbdc20749b63028.png

php怎么判断图片类型?

php判断图片类型:$filename = '617.gif' ;

function pictype ( $file )

{

/*$png_header = "/x89/x50/x4e/x47/x0d/x0a/x1a/x0a";

$jpg_header = "/xff/xd8";*/

$header = file_get_contents ( $file , 0 , NULL , 0 , 5 );

//echo bin2hex($header);

if ( $header { 0 }. $header { 1 }== "/x89/x50" )

{

return 'png' ;

}

else if( $header { 0 }. $header { 1 } == "/xff/xd8" )

{

return 'jpeg' ;

}

else if( $header { 0 }. $header { 1 }. $header { 2 } == "/x47/x49/x46" )

{

if( $header { 4 } == "/x37" )

return 'gif87' ;

else if( $header { 4 } == "/x39" )

return 'gif89' ;

}

}

echo pictype ( $filename );

更多相关技术文章,请访问PHP中文网!

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/534847
推荐阅读
相关标签
  

闽ICP备14008679号