php获取exif图片缩略图的例子

发布时间:2020-10-04编辑:脚本学堂
本文介绍了php读取exif图片信息,取得exif图片中缩略图的方法,需要的朋友参考下。

以下例子演示了php如何获取exif图片的缩略图。

完整代码:
 

复制代码 代码示例:
// file to read
$file = 'test.jpg';
 
$image = exif_thumbnail($file, $width, $height, $type);
 
// width, height and type get filled with data
// after calling "exif_thumbnail"
 
if ($image) {
    // send header and image data to the browser:
    header('content-type: ' .image_type_to_mime_type($type));
    print $image;
}
else {
    // there is no thumbnail available, handle the error:
    print 'no thumbnail available';
}