国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP獲取Exif縮略圖的方法

Original 2017-01-21 10:14:33 196
abstract:本文實(shí)例講述了PHP獲取Exif縮略圖的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:// file to read $file = 'test.jpg'; $image = exif_thumbnail($file, $width, $height, $type); // 

本文實(shí)例講述了PHP獲取Exif縮略圖的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

// 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';
}

更多關(guān)于PHP獲取Exif縮略圖的方法請關(guān)注PHP中文網(wǎng)(www.miracleart.cn)其他文章!  

Release Notes

Popular Entries