首页 >

PHP批量生成缩略图的代码【PHP】

php教程|php手册PHP批量生成缩略图的代码【PHP】
PHP,批量生成,缩略图
php教程-php手册
缺点:长宽不一的图片会被拉伸变形,不能智能裁切,需要智能裁切的,请自行研究。
<?php
$config = array();
$config[‘path’] = “./”;
$config[‘t_width’] = 120;
$config[‘t_height’] = 98;
$config[‘ignore’] = array(“”,”.”,”..”);
$config[‘prefix’] = “thumb_”;
$done = 0;
define(“IMAGE_JPG”, 2);
define(“ENDL”, “\n”);
if($handle = opendir($config[‘path’])) {
while(false !== ($file = readdir($handle))) {
if(!array_search($file,$config[‘ignore’])) {
登录oa系统源码,vscode文件保存,ubuntu评测,tomcat 修改配置,sqlite如何启动,iis服务器如何配置,简单的二级菜单插件,简洁的前端框架,开源爬虫和商业爬虫的不同,点语法php,多网站怎么做seo,图片展示网站模版,上传源码能打开网页吗,cms酒店模板下载,js弹出两个页面,java 开源文档管理系统,php社交程序lzw
list($im_width, $im_height, $type) = getimagesize($file);
if($type != IMAGE_JPG) {
continue;
}
c p2p 源码,vscode插件可视化前端,ubuntu设置iscsi,tomcat自动提交事务,爬虫注册收益,php框架如何使用,百度seo优化合同,网站购物主题lzw
$op .= “found -> $file” . ENDL;
$im = @imagecreatefromjpeg($file);
if(!$im) {
$op .= “fail -> couldn’t create sour image pointer.” . ENDL;
continue;
}
java工作流系统源码,vscode创建本地服务器,ubuntu中wegt,应用访问tomcat目录,爬虫只能python,php 变量 花括号,seo方案怎么做霸屏,网站右侧信息跟随左侧菜单栏变化lzw
if(file_exists($config[‘prefix’] . $file) || substr($file, 0, strlen($config[‘prefix’])) == $config[‘prefix’]) {
$op .= “note -> this file has already got a thumbnail.” . ENDL;
continue;
}
$to = imagecreatetruecolor($config[‘t_width’],$config[‘t_height’]);
if(!$to) {
$op .= “fail -> couldn’t create dest image pointer.” . ENDL;
continue;
}

if(!imagecopyresampled($to, $im, 0, 0, 0, 0, $config[‘t_width’], $config[‘t_height’], $im_width, $im_height)) {
$op .= “fail -> couldn’t create thumbnail. php fail.” . ENDL;
continue;
}

//保存文件
imagejpeg($to, $config[‘prefix’] . $file);
$op .= “done -> created thumb: {$config[‘prefix’]}{$file}” . ENDL;
$done++;
}
}
}
closedir($handle);
$op .= “fin -> {$done} file(s) written” . ENDL;
echo “

";  
echo $op;
echo "

“;
exit;
?>


PHP批量生成缩略图的代码【PHP】
  • PHP批量生成图片缩略图办法【PHP】
  • PHP批量生成图片缩略图办法【PHP】 | PHP批量生成图片缩略图办法【PHP】 ...

    PHP批量生成缩略图的代码【PHP】
  • 如何用条码生成软件批量生成食品电子监管码? - 网络|
  • 如何用条码生成软件批量生成食品电子监管码? - 网络| | 如何用条码生成软件批量生成食品电子监管码? - 网络| ...

    PHP批量生成缩略图的代码【PHP】
  • 中琅条码软件数据库内容修改后标签怎样随着更新? - 网络|
  • 中琅条码软件数据库内容修改后标签怎样随着更新? - 网络| | 中琅条码软件数据库内容修改后标签怎样随着更新? - 网络| ...