首頁  >  文章  >  後端開發  >  PHP获取Exif缩略图的方法,获取exif缩略图_PHP教程

PHP获取Exif缩略图的方法,获取exif缩略图_PHP教程

WBOY
WBOY原創
2016-07-13 09:46:40845瀏覽

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程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1031488.htmlTechArticlePHP获取Exif缩略图的方法,获取exif缩略图 本文实例讲述了PHP获取Exif缩略图的方法。分享给大家供大家参考。具体实现方法如下: // file to...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn