exif_thumbnail 取得嵌入在 TIFF 或 JPEG 图像中的缩略图
发表日期:2021-07-01 08:56:03 | 来源: | | 浏览(926) 分类:可交换图像信息
exif_thumbnail
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
exif_thumbnail — 取得嵌入在 TIFF 或 JPEG 图像中的缩略图
说明
string
$filename
,int
&$width
= ?,int
&$height
= ?,int
&$imagetype
= ?): string
exif_thumbnail() 读取 TIFF 或 JPEG
图像中的嵌入缩略图。如果图像不包含缩略图则返回 false
。
If you want to deliver thumbnails through this function, you should send the mimetype information using the header() function.
It is possible that exif_thumbnail() cannot create an
image but can determine its size. In this case, the return value is
false
but width
and height
are set.
参数
-
filename
-
The name of the image file being read. This image contains an embedded thumbnail.
-
width
-
The return width of the returned thumbnail.
-
height
-
The returned height of the returned thumbnail.
-
imagetype
-
The returned image type of the returned thumbnail. This is either TIFF or JPEG.
返回值
Returns the embedded thumbnail, or false
if the image contains no
thumbnail.
更新日志
版本 | 说明 |
---|---|
4.3.0 |
The optional parameters width ,
height , and imagetype
all became available.
|
4.3.0 | May return thumbnails in the TIFF format. |
范例
示例 #1 exif_thumbnail() 例子
<?php if (array_key_exists('file',$_REQUEST)) { $image = exif_thumbnail($_REQUEST['file'], $width, $height, $type); } else { $image = false; } if ($image!==false) { header("Content-type: ".image_type_to_mime_type($type)); echo $image; exit; } else { // no thumbnail available, handle the error here echo "No thumbnail available"; } ?>
参见
- exif_read_data() - 从一个图片文件中读取 EXIF 头信息
- image_type_to_mime_type() - 取得 getimagesize,exif_read_data,exif_thumbnail,exif_imagetype 所返回的图像类型的 MIME 类型
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- exif_imagetype 判断一个图像的类型(0)
- exif_read_data 从一个图片文件中读取 EXIF 头信息(0)
- exif_tagname 获取指定索引的头名称(0)
- exif_thumbnail 取得嵌入在 TIFF 或 JPEG 图像中的缩略图(0)
- read_exif_data 别名 exif_read_data()(0)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)