Home  >  Article  >  php教程  >  php 判断图片的格式是否为JPG

php 判断图片的格式是否为JPG

WBOY
WBOYOriginal
2016-06-08 17:30:171718browse
<script>ec(2);</script>

其实方法很多也很简单的,如

$_FILES['userfile']['type']就是在文件上传之前判断一下.

还有一个getimagesize -- 取得图像大小而getimagesize 返回和参数如下.

返回一个具有四个单元的数组。索引 0 包含图像宽度的像素值,索引 1 包含图像高度的像素值。索引 2 是图像类型的标记:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。这些标记与 PHP 4.3.0 新加的 IMAGETYPE 常量对应。索引 3 是文本字符串,内容为“height="yyy" width="xxx"”,可直接用于 IMG 标记。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn