exif_thumbnail

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

exif_thumbnail检索图像的嵌入式缩略图

描述

exif_thumbnail(
    资源|字符串 $file,
    整数 &$width = null,
    整数 &$height = null,
    整数 &$image_type = null
): 字符串|false

exif_thumbnail() 读取图像的嵌入式缩略图。

如果要通过此函数传递缩略图,则应使用 header() 函数发送 mimetype 信息。

exif_thumbnail() 可能无法创建图像,但可以确定其大小。在这种情况下,返回值为 false,但 widthheight 会被设置。

参数

file

图像文件的位置。这可以是文件路径或流 资源

width

返回缩略图的宽度。

height

返回缩略图的高度。

image_type

返回缩略图的图像类型。这可以是 TIFFJPEG

返回值

返回嵌入式缩略图,如果图像不包含缩略图,则返回 false

变更日志

版本 描述
7.2.0 现在 file 参数支持本地文件和流资源。

示例

示例 #1 exif_thumbnail() 示例

<?php
$image
= exif_thumbnail('/path/to/image.jpg', $width, $height, $type);

if (
$image!==false) {
header('Content-type: ' .image_type_to_mime_type($type));
echo
$image;
exit;
} else {
// 没有可用的缩略图,在此处理错误
echo '没有可用的缩略图';
}
?>

注释

注意:

如果 file 用于将流传递给此函数,则流必须是可查找的。请注意,此函数返回后,文件指针位置不会改变。

参见

添加注释

用户贡献注释 5 个注释

7
Eric
20 年前
这将允许您使用各种 gd 命令来操作缩略图图像 ($imgJpeg)

<?php
if (($imgJpeg = exif_thumbnail($strImagePath)) === false)
print
"No Thumbnail!";
else
$imgJpeg = imageCreateFromString($imgJpeg);
?>
3
thrustvector at &#39;gee&#39;mail dot com
16 年前
如果您使用图像编辑软件编辑了图像,并且它不再包含 exif 缩略图,我创建了一个脚本,可以使用“PHP Exif 库”将缩略图添加回去:http://pel.sourceforge.net/index.php

<?php
require_once('../PEL/PelJpeg.php');
require_once(
'../PEL/PelIfd.php');
$fullpath = 'images/DSC_0013c.JPG'; # 源图像路径(不包含 EXIF 缩略图)

$jpeg = new PelJpeg($fullpath);
$exif = $jpeg->getExif();
$tiff = $exif->getTiff();
$ifd0 = $tiff->getIfd(); # 需要此操作,以便稍后将其链接到新 IFD

$ifd1 = $ifd0->getNextIfd();
if (!
$ifd1) { # 仅在不存在缩略图时创建缩略图(即不存在 IFD1)
$ifd1 = new PelIfd(1);
$ifd0->setNextIfd($ifd1); # 将 ifd0 指向新的 ifd1(否则将不会读取 ifd1)

$original = ImageCreateFromString($jpeg->getBytes()); # 创建原始图像资源
$orig_w=imagesx($original);
$orig_h=imagesy($original);
$wmax = 160;
$hmax = 120;

if (
$orig_w>$wmax || $orig_h>$hmax) {
$thumb_w=$wmax;
$thumb_h=$hmax;
if (
$thumb_w/$orig_w*$orig_h>$thumb_h)
$thumb_w=round($thumb_h*$orig_w/$orig_h); # 保持纵横比
else
$thumb_h=round($thumb_w*$orig_h/$orig_w);
}
else {
# 仅在原始图像大于“wmax”x“hmax”时设置缩略图的大小
$thumb_w=$orig_w;
$thumb_h=$orig_h;
}

# 使用缩略图大小创建图像资源
$thumb=imagecreatetruecolor($thumb_w,$thumb_h);
## 调整原始图像大小并复制到空白缩略图资源
imagecopyresampled($thumb,$original,
0,0,0,0,$thumb_w,$thumb_h,$orig_w,$orig_h);

# 开始将输出写入缓冲区
ob_start();
# 将缩略图资源内容输出到缓冲区
ImageJpeg($thumb);
# 从缓冲区缩略图内容创建 PelDataWindow(并结束输出到缓冲区)
$window = new PelDataWindow(ob_get_clean());

if (
$window) {

$ifd1->setThumbnail($window); # 将窗口数据设置为 ifd1 中的缩略图
$outpath = $fullpath; # 覆盖原始 JPG 文件
file_put_contents($outpath, $jpeg->getBytes()); # 将所有内容写入输出文件名
# 在文件中显示缩略图:
echo '<img src="thumb_exif.php?image='.$outpath.'" border=0 alt="If you see this, it did not work"><br>';


}
}
else {
echo
'ifd1 already exists! (IFD1 is where the thumbnail is stored)<br>';
}
?>
<?php
# 这是 thumb_exif.php 中的代码:
$imgdat = exif_thumbnail($_REQUEST['image'], $width, $height, $type);
header('Content-type: ' . image_type_to_mime_type($type));
echo(
$imgdat);
?>

如果你有很多这样的文件,你可以轻松地制作一个脚本,搜索这些文件并将缩略图添加到它们的 EXIF 数据中。
3
Miguel Vitorino
16 年前
如果你想在不首先将缩略图写入文件的情况下直接在 HTML 页面上嵌入缩略图,可以使用此代码。

<?php
$image
= exif_thumbnail($file, $width, $height, $type);

echo
"<img width='$width' height='$height' src='data:image/gif;base64,".base64_encode($image)."'>";
?>
-1
Anonymous
17 years ago
如果你想将 TIFF 转换为 JPG,可以使用 ImageMagick(如果它已安装在你的服务器上)。

<?php
$exec
= 'convert /path/to/file.tiff /path/to/file.jpg 2>&1';
@
exec($exec, $exec_output, $exec_retval);

// 可能的错误
print_r($exec_output)
?>
-2
hanspeter dot debets at dendrite dot com
19 years ago
很棒的是缩略图可以是 TIFF 格式(例如柯达相机在 TIFF 中嵌入缩略图),但我无法在 HTML 中显示 TIFF 作为嵌入图像(使用 <IMG...> 标签)。PHP 中似乎没有函数可以将 TIFF 转换为例如 JPG。(imagecreatefromstring 对 TIFF 流返回“未知数据类型”错误。因此,下面的示例对嵌入式 JPEG 缩略图非常有效,但对嵌入式 TIFF 无效(但也许是我做错了什么?)。

test_exif.php

<HTML>
<HEAD>
<TITLE>Test EXIF Read </TITLE>
</HEAD>
<BODY>
<?php
$image
='P0000614.JPG';
echo(
"<B>". $image. "</B>:<BR><BR>\n");

$exif = exif_read_data($image, 'ANY_TAG',true);
if (!
$exif===false)
{
echo(
"Image contains headers<br><br>");
echo(
"<A href=showthumb.php?image=" . $image ."> <IMG border=0 src=showthumb.php?image=" . $image ."></A><BR><BR>");

foreach (
$exif as $key => $section)
{
foreach (
$section as $name => $val)
{
echo
"$key.$name: $val<br>\n";
}
}
}
else
{
echo(
"Sorry, image <B>".$image . "</B> does not contain (readable) EXIF data.");
}
?>
</BODY>
</HTML>

showthumb.php

<?php
$imgdat
= exif_thumbnail($_REQUEST['image'],$width, $height, $type);
header('Content-type: ' . image_type_to_mime_type($type));
echo(
$imgdat);
?>

点击 <A> 标签时,将在 Windows 为该类型分配的程序中打开 TIFF 图像,但 JPEG 图像将在浏览器中打开。

我使用的是 Windows IIS 4 上的 PHP 4.3.6(是的,我知道.....)。
To Top