PHP获取Exif缩略图的方法,获取exif缩略图_PHP教程
程序员文章站
2024-02-19 21:16:34
...
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'; }
希望本文所述对大家的php程序设计有所帮助。
上一篇: php递归法读取目录及文件的方法,
下一篇: PHP快速准确的检测QQ是否在线类。
推荐阅读
-
PHP获取Exif缩略图的方法,获取exif缩略图_PHP教程
-
PHP使用Get变量获取中文乱码的解决方法_PHP教程
-
smarty模板引擎从配置文件中获取数据的方法,smarty模板_PHP教程
-
php获取数组元素中头一个数组元素值的实现方法,php数组_PHP教程
-
smarty模板引擎从php中获取数据的方法,smarty模板_PHP教程
-
php获取文件类型和文件信息的方法,_PHP教程
-
PHP实现获取图片颜色值的方法_PHP教程
-
php使用ffmpeg获取视频信息并截图的实现方法,phpffmpeg_PHP教程
-
php调用淘宝开放API实现根据卖家昵称获取卖家店铺ID的方法,api卖家_PHP教程
-
PHP获取某个月最大天数(最后一天)的方法,天数最后一天_PHP教程