导航
系统开发首页
使用手册
插件手册
米拓商城
模板制作
应用开发
系统开发
http://doc.metinfo.cn/dev/
1
系统开发首页
第二章 基础
2.5.系统类
2.5.15.thumb.class.php 缩略图类
更新时间:2020-02-19 15:30:39
作者:米拓建站
**注:使用需要先加载文件后使用($thumb = load::sys_class('thumb', 'new');)** 缩略图类是用来生成图片的缩略图,调用方法如下表: | 属性 | 访问修饰符 | 描述 | | ------------ | ------------ | ------------ | | $thumb_width | public | 缩略图宽。默认为350。 | | $thumb_height | public | 缩略图高。默认为350。 | | $thumb_savepat | public | 缩略图保存地址。 | | $thumb_save_type | public | 保存方式(1=保存在原图路径的子目录下;2=覆盖原图片;3=自定义路径)。默认为1。 | | $thumb_bgcolor | public | 缩略图背景颜色,以#开头。 | | $thumb_kind | public | 生成缩略图方式(1=拉升;2=留白;3=裁剪)。默认为1。 | 注:以上路径属性都必须是绝对路径或相对网站根目录的相对地址。(请使用set方法为路劲赋值,其他public属性也是一样) | 方法 | 访问修饰符 | 描述 | | ------------ | ------------ | ------------ | | [set()](http://doc.metinfo.cn/dev/classfun/classfun241.html "set()") | public | 可以对public属性进行修改。 | | [list_module()](http://doc.metinfo.cn/dev/classfun/classfun259.html "list_module()") | public | 按网站列表页缩略图方式缩略图片。 | | [content_module()](http://doc.metinfo.cn/dev/classfun/classfun260.html "content_module()") | public |按网站内容页缩略图方式缩略图片。 | | [list_news()](http://doc.metinfo.cn/dev/classfun/classfun261.html "list_news()") | public | 按网站新闻列表页缩略图方式缩略图片。 | | [list_product()](http://doc.metinfo.cn/dev/classfun/classfun262.html "list_product()") |public |按网站产品列表页缩略图方式缩略图片。 | | [list_img()](http://doc.metinfo.cn/dev/classfun/classfun263.html "list_img()") | public | 按网站图片列表页缩略图方式缩略图片。 | | [contents_img()](http://doc.metinfo.cn/dev/classfun/classfun264.html "contents_img()") |public | 按网站图片内容页缩略图方式缩略图片。 | |[ contents_product()](http://doc.metinfo.cn/dev/classfun/classfun265.html " contents_product()") | public |按网站产品内容页缩略图方式缩略图片。 | | [createthumb()](http://doc.metinfo.cn/dev/classfun/classfun266.html "createthumb()") | public | 生成缩略图。 | | img_resource() | protected | 创建图片资源。 | | gd_version() | protected | 得到的Gd服务器版本。 | | check_img_function() | protected | 检测PHP版本以及处理函数是否可用。 | | error() protected | protected |缩略图错误调用方法。 | | sucess() | protected | 缩略图成功调用方法。 |
上一篇
: 2.4.1.常量
下一篇
: 2.6.7.file.func.php 文件处理函数