当前位置:Gxlcms > PHP教程 > php实现根据url自动生成缩略图的方法_PHP

php实现根据url自动生成缩略图的方法_PHP

时间:2021-07-01 10:21:17 帮助过:32人阅读

本文实例讲述了php实现根据url自动生成缩略图的方法,是非常实用的功能。分享给大家供大家参考。具体方法如下:

原理:设置apache rewrite ,当图片不存在时,调用php创建图片。

例如:

原图路径为:http://localhost/upload/news/2013/07/21/1.jpg
缩略图路径为:http://localhost/supload/news/2013/07/21/1.jpg

当访问 http://localhost/supload/news/2013/07/21/1.jpg 时,如图片存在,则显示图片。否则,调用createthumb.php生成图片。

目录结构如下:

www/PicThumb.class.php
www/ThumbConfig.php
www/upload/news/2013/07/21/1.jpg
www/upload/article/2013/07/21/2.jpg
www/supload/.htaccess
www/supload/watermark.png
www/supload/createthumb.php

http://localhost/ 指向 www目录

PicThumb.class.php 用法请查看这里:http://www.bitsCN.com/article/55530.htm

需要开启apache rewrite:

  1. sudo a2enmod rewrite

.htaccess文件如下:

  1. <ifmodule mod_rewrite.c="">
  2. RewriteEngine On
  3. # '-s' (is regular file, with size)
  4. # '-l' (is symbolic link)
  5. # '-d' (is directory)
  6. # 'ornext|OR' (or next condition)
  7. # 'nocase|NC' (no case)
  8. # 'last|L' (last rule)
  9. RewriteCond %{REQUEST_FILENAME} -s [OR]
  10. RewriteCond %{REQUEST_FILENAME} -l [OR]
  11. RewriteCond %{REQUEST_FILENAME} -d
  12. RewriteRule ^.*$ - [NC,L]
  13. RewriteRule ^.*$ createthumb.php?path=%{REQUEST_URI} [NC,L]
  14. </ifmodule>

createthumb.php文件如下:

  1. <?php
  2. define('WWW_PATH', dirname(dirname(__FILE__))); // 站点www目录
  3. require(WWW_PATH.'/PicThumb.class.php'); // include PicThumb.class.php
  4. require(WWW_PATH.'/ThumbConfig.php'); // include ThumbConfig.php
  5. $logfile = WWW_PATH.'/createthumb.log'; // 日志文件
  6. $source_path = WWW_PATH.'/upload/'; // 原路径
  7. $dest_path = WWW_PATH.'/supload/'; // 目标路径
  8. $path = isset($_GET['path'])? $_GET['path'] : ''; // 访问的图片URL
  9. // 检查path
  10. if(!$path){
  11. exit();
  12. }
  13. // 获取图片URI
  14. $relative_url = str_replace($dest_path, '', WWW_PATH.$path);
  15. // 获取type
  16. $type = substr($relative_url, 0, strpos($relative_url, '/'));
  17. // 获取config
  18. $config = isset($thumb_config[$type])? $thumb_config[$type] : '';
  19. // 检查config
  20. if(!$config || !isset($config['fromdir'])){
  21. exit();
  22. }
  23. // 原图文件
  24. $source = str_replace('/'.$type.'/', '/'.$config['fromdir'].'/', $source_path.$relative_url);
  25. // 目标文件
  26. $dest = $dest_path.$relative_url;
  27. // 创建缩略图
  28. $obj = new PicThumb($logfile);
  29. $obj->set_config($config);
  30. if($obj->create_thumb($source, $dest)){
  31. ob_clean();
  32. header('content-type:'.mime_content_type($dest));
  33. exit(file_get_contents($dest));
  34. }
  35. ?>

ThumbConfig.php文件如下:

  1. <?php
  2. $thumb_config = array(
  3. 'news' => array(
  4. 'fromdir' => 'news', // 来源目录
  5. 'type' => 'fit',
  6. 'width' => 100,
  7. 'height' => 100,
  8. 'bgcolor' => '#FF0000'
  9. ),
  10. 'news_1' => array(
  11. 'fromdir' => 'news',
  12. 'type' => 'fit',
  13. 'width' => 200,
  14. 'height' => 200,
  15. 'bgcolor' => '#FFFF00'
  16. ),
  17. 'article' => array(
  18. 'fromdir' => 'article',
  19. 'type' => 'crop',
  20. 'width' => 250,
  21. 'height' => 250,
  22. 'watermark' => WWW_PATH.'/supload/watermark.png'
  23. )
  24. );
  25. ?>

访问这三个路径后会按config自动生成缩略图
http://localhost/supload/news/2013/07/21/1.jpg
http://localhost/supload/news_1/2013/07/21/1.jpg
http://localhost/supload/article/2013/07/21/2.jpg

本文所述实例完整代码点击此处本站下载。

希望本文所述对大家的php程序设计有所帮助。

人气教程排行