当前位置: 编程技术>php
php获取exif图片缩略图的例子
来源: 互联网 发布时间:2014-08-30
本文导语: 以下例子演示了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) ...
以下例子演示了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';
}
$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获取图片exif信息的小例子
- php显示照片exif信息实例代码
- php获取图片的exif信息的示例代码