《PHP学习:PHP获取Exif缩略图的方法》要点:
本文介绍了PHP学习:PHP获取Exif缩略图的方法,希望对您有用。如果有疑问,可以联系我们。
PHP编程本文实例讲述了PHP获取Exif缩略图的办法.分享给大家供大家参考.具体实现办法如下:
PHP编程
// 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学习:PHP获取Exif缩略图的方法》等实战技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培养人才。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/9682.html