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

   本文实例讲述了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目录

  需要开启apache rewrite:

  sudo a2enmod rewrite

  .htaccess文件 如下:

  <IfModule mod_rewrite.c>

  RewriteEngine On

  # '-s' (is regular file, with size)

  # '-l' (is symbolic link)

  # '-d' (is directory)

  # 'ornext|OR' (or next condition)

  # 'nocase|NC' (no case)

  # 'last|L' (last rule)

  RewriteCond %{REQUEST_FILENAME} -s [OR]

  RewriteCond %{REQUEST_FILENAME} -l [OR]

  RewriteCond %{REQUEST_FILENAME} -d

  RewriteRule ^.*$ - [NC,L]

  RewriteRule ^.*$ createthumb.php?path=%{REQUEST_URI} [NC,L]

  </IfModule >

 

  createthumb.php文件如下:

  <?php

  define('WWW_PATH', dirname(dirname(__FILE__))); // 站点www目录

  require(WWW_PATH.'/PicThumb.class.php'); // include PicThumb.class.php

  require(WWW_PATH.'/ThumbConfig.php'); // include ThumbConfig.php

  $logfile = WWW_PATH.'/createthumb.log'; // 日志文件

  $source_path = WWW_PATH.'/upload/'; // 原路径

  $dest_path = WWW_PATH.'/supload/'; // 目标路径

  $path = isset($_GET['path'])? $_GET['path'] : ''; // 访问的图片URL

  // 检查path

  if(!$path){

  exit();

  }

  // 获取图片URI

  $relative_url = str_replace($dest_path, '', WWW_PATH.$path);

  // 获取type

  $type = substr($relative_url, 0, strpos($relative_url, '/'));

  // 获取config

  $config = isset($thumb_config[$type])? $thumb_config[$type] : '';

  // 检查config

  if(!$config || !isset($config['fromdir'])){

  exit();

  }

  // 原图文件

  $source = str_replace('/'.$type.'/', '/'.$config['fromdir'].'/', $source_path.$relative_url);

  // 目标文件

  $dest = $dest_path.$relative_url;

  // 创建缩略图

  $obj = new PicThumb($logfile);

  $obj->set_config($config);

  if($obj->create_thumb($source, $dest)){

  ob_clean();

  header('content-type:'.mime_content_type($dest));

  exit(file_get_contents($dest));

  }

  ?>

 

 

  ThumbConfig.php文件如下:

  <?php

  $thumb_config = array(

  'news' => array(

  'fromdir' => 'news', // 来源目录

  'type' => 'fit',

  'width' => 100,

  'height' => 100,

  'bgcolor' => '#FF0000'

  ),

  'news_1' => array(

  'fromdir' => 'news',

  'type' => 'fit',

  'width' => 200,

  'height' => 200,

  'bgcolor' => '#FFFF00'

  ),

  'article' => array(

  'fromdir' => 'article',

  'type' => 'crop',

  'width' => 250,

  'height' => 250,

  'watermark' => WWW_PATH.'/supload/watermark.png'

  )

  );

  ?>

  访问这三个路径后会按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程序设计有所帮助。

时间: 2024-10-02 17:05:03

php实现根据url自动生成缩略图的方法的相关文章

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

本文实例讲述了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

php根据url自动生成缩略图并处理高并发问题

服务器生成缩略图的时机一般分为两种: 1.上传文件时生成 优点:上传时就已经生成需要的缩略图,读取时不需要再判断,减少cpu运算. 缺点:当缩略图尺寸变化时或新增尺寸时,需要重新生成所有的缩略图. 2.访问时生成 优点:1.当有用户访问时才需要生成,没有访问的不用生成,节省空间. 2.当修改缩略图尺寸时,只需要修改设置,无需重新生成所有缩略图. 缺点:当缩略图不存在需要生成时,高并发访问会非常耗服务器资源. 虽然访问时生成会有高并发问题,但其他优点都比第一种方法好,因此只要解决高并发问题就可以.

php 根据url自动生成缩略图并处理高并发问题_php技巧

服务器生成缩略图的时机一般分为两种: 1.上传文件时生成 优点:上传时就已经生成需要的缩略图,读取时不需要再判断,减少cpu运算. 缺点:当缩略图尺寸变化时或新增尺寸时,需要重新生成所有的缩略图. 2.访问时生成 优点:1.当有用户访问时才需要生成,没有访问的不用生成,节省空间. 2.当修改缩略图尺寸时,只需要修改设置,无需重新生成所有缩略图. 缺点:当缩略图不存在需要生成时,高并发访问会非常耗服务器资源. 虽然访问时生成会有高并发问题,但其他优点都比第一种方法好,因此只要解决高并发问题就可以.

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生成图片. 目录结构如下: ww

php 上传图片自动生成缩略图

 代码如下 复制代码 <form action="uploads.php" method="post" enctype="multipart/form-data">  <input type='file' name='image'><br>  <input type='submit' name='sub' value='提交'> </form> uploads.php文件 <?ph

python使用pil生成缩略图的方法

 这篇文章主要介绍了python使用pil生成缩略图的方法,涉及Python使用pil模块操作图片的技巧,非常具有实用价值,需要的朋友可以参考下     本文实例讲述了python使用pil生成缩略图的方法.分享给大家供大家参考.具体分析如下: 这段代码实现python通过pil生成缩略图的功能,会强行将图片大小修改成250x156 ? 1 2 3 4 from PIL import Image img = Image.open('jb51.jpg') img = img.resize((250

c#生成缩略图不失真的方法

 使用.net的方法GetThumbnailImage生成的缩略图失真严重,这里推荐一种不失真生成缩略图的方法 代码如下: /// <summary> /// 获得缩微图 /// </summary> /// <returns></returns>   public bool GetThumbImg() { try { string imgpath; //原始路径      if(imgsourceurl.IndexOf("",0)<

Thinkphp调用Image类生成缩略图的方法

 这篇文章主要介绍了Thinkphp调用Image类生成缩略图的方法,实例分析了Thinkphp调用Image类生成缩略图的使用原理与相关技巧,需要的朋友可以参考下     本文实例讲述了Thinkphp调用Image类生成缩略图的方法.分享给大家供大家参考.具体分析如下: Thinkphp的Image类 在ThinkPHP/Extend/Library/ORG/Util/Image.class.php中. 调用方法如下: ? 1 2 3 4 5 6 7 import("ORG.Util.Ima

Thinkphp调用Image类生成缩略图的方法_php实例

本文实例讲述了Thinkphp调用Image类生成缩略图的方法.分享给大家供大家参考.具体分析如下: Thinkphp的Image类 在ThinkPHP/Extend/Library/ORG/Util/Image.class.php中. 调用方法如下: import("ORG.Util.Image"); $Img = new Image();//实例化图片类对象 $image_path = './图片路径'; //若当前php文件在Thinkphp的中APP_PATH路径中 //'./