PHP获取Exif缩略图的方法,获取exif缩略图_PHP教程
程序员文章站
2022-05-17 15:10:42
...
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教程
推荐阅读
-
PHP获取Exif缩略图的方法
-
php通过exif_read_data函数获取图片的exif信息
-
在PHP中使用魔术方法__CLASS__来获取类名的教程
-
php使用curl获取https请求的方法_PHP教程
-
采用PHP函数memory_get_usage获取PHP内存清耗量的方法_PHP教程
-
php实现从上传文件创建缩略图的方法,_PHP教程
-
PHP 获取远程文件大小的3种解决方法_PHP教程
-
PHP生成和获取XML格式数据的方法,php获取xml格式_PHP教程
-
php获取百度收录、百度热词及百度快照的方法,php百度快照_PHP教程
-
php动态生成缩略图并输出显示的方法,php动态生成缩略图_PHP教程