Home  >  Article  >  php教程  >  PHP批量生成缩略图

PHP批量生成缩略图

WBOY
WBOYOriginal
2016-06-08 17:32:15940browse
<script>ec(2);</script>

本文件可以用于自动创建目录下所有JPG图片的缩略图,放到图片目录下运行即可。
缺点:长宽不一的图片会被拉伸变形,不能智能裁切,需要智能裁切的,请自行研究。




$config = array();
$config[''path''] = "./";
$config[''t_width''] = 120;
$config[''t_height''] = 98;
$config[''ignore''] = array("",".",
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php注入方法集锦Next article:PHP操作excel的一个例子