45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:PHP通过Exif获取缩略图的操作实例

PHP通过Exif获取缩略图的操作实例

2015-07-29 04:29:52 来源:www.45fan.com 【

PHP通过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';
}

希望本文所述对大家的php程序设计有所帮助。


本文地址:http://www.45fan.com/bcdm/16014.html
Tags: 获取 PHP Exif
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部