# 图片缩略实现
## 指定长宽缩略
指定长、宽实现图片的缩略效果,缩略图尺寸模仿京东图片的尺寸。
```
<?php
$filename = './images/jd.jpg';
$file_info = getimagesize($filename);
if ($file_info) {
list($width, $height) = $file_info;
} else {
die("文件不是真实图片");
}
$src_image = imagecreatefromjpeg($filename);
$dst_image_50 = imagecreatetruecolor(50, 50);
$dst_image_270 = imagecreatetruecolor(270, 270);
imagecopyresampled($dst_image_50, $src_image, 0, 0, 0, 0, 50, 50, $width, $height);
imagecopyresampled($dst_image_270,$src_image,0,0,0,0,270,270,$width,$height);
imagejpeg($dst_image_50,'./images/jd_50x50.jpg');
imagejpeg($dst_image_270,'./images/jd_270x270.jpg');
imagedestroy($dst_image_50);
imagedestroy($dst_image_270);
imagedestroy($src_image);
```
## 等比例缩放
指定缩放比例,最大宽度和高度,等比例缩放,可以对缩略图文件添加前缀,选择是否删除缩略图源文件
```
<?php
/**
* @param string $file_name 文件名
* @param string $dst_path 缩略图保存路径
* @param string $prefix 缩略图保存的前缀
* @param null $dst_w 目标的最大宽度
* @param null $dst_h 目标的最大高度
* @param float $scale 缩放比例
* @param bool $delete_source 是否删除源文件的标志
*/
function thumb($file_name, $dst_path = 'thumb', $prefix = 'thumb_', $dst_w = null, $dst_h = null, $scale = 0.5, $delete_source = false)
{
$file_info = getImageInfo($file_name);
$src_w = $file_info['width'];
$src_h = $file_info['height'];
// 如果指定最大宽度和高度按照等比例缩放进行处理
if (is_numeric($dst_w) && is_numeric($dst_h)) {
$ratio_orig = $src_w / $src_h;
if ($dst_w / $dst_h > $ratio_orig) {
$dst_w = $dst_h * $ratio_orig;
} else {
$dst_h = $dst_w / $ratio_orig;
}
} else {
$dst_w = ceil($src_w * $scale);
$dst_h = ceil($src_h * $scale);
}
$dst_image = imagecreatetruecolor($dst_w, $dst_h);
$src_image = $file_info['create_fun']($file_name);
imagecopyresampled($dst_image, $src_image, 0, 0, 0, 0, $dst_w, $dst_h, $src_w, $src_h);
// 检测目标目录是否存在
if ($dst_path && !file_exists($dst_path)) {
mkdir($dst_path, 0777, true);
}
$dst_name = "{$prefix}{$file_info['file_name']}" . $file_info['extension'];
$destination = $dst_path ? $dst_path . '/' . $dst_name : $dst_name; // 保存的文件名
$file_info['out_fun']($dst_image, $destination);
if ($delete_source) {
@unlink($file_name);
}
imagedestroy($src_image);
imagedestroy($dst_image);
}
/**
* @param $filename string 文件名
* @return array
*/
function getImageInfo($filename)
{
if (!$info = getimagesize($filename)) {
exit('文件不是真实图片!');
}
$file_info['file_name'] = pathinfo($filename)['filename'];
$file_info['width'] = $info[0];
$file_info['height'] = $info[1];
$mime = image_type_to_mime_type($info[2]);
$file_info['extension'] = image_type_to_extension($info[2], true);
$file_info['create_fun'] = str_replace('/', 'createfrom', $mime);
$file_info['out_fun'] = str_replace('/', '', $mime);
return $file_info;
}
```
- 开始
- PHP配置参数的介绍
- PHP代码优化
- php中的命名空间
- PHP文件上传类
- PHP文件下载
- PHP验证码
- ThinkPHP3.2 框架函数
- A函数:实例化控制器
- C函数:设置和获取配置参数
- D函数:实例化模型
- F 函数:快速缓存设置和存取
- M函数:例化模型(无需定义模型类)
- L函数:设置和获取语言变量
- S 函数:缓存设置和存取
- R函数:直接调用控制器的操作方法
- U函数:URL地址生成
- I 函数:安全获取系统输入变量
- 日志
- ThinkPHP在关闭调试模式导致函数被缓存
- MySQL触发器使用时遇到的坑
- PHP常用函数
- 五一回家记录
- window的PHP开发(wamp)下安装redis扩展
- Windows下安装使用Redis
- PHP7新特性
- 利用 phpmailer 类实现队列发送邮件
- GD 库图像处理
- 检测 PHP 模块是否开启
- GD 库操作一般步骤
- GD 库绘画改变字体
- GD 绘制验证码
- GD 缩略图实现
- GD 绘制水印
- 日期时间函数库
- PHP 函数
- 无限极分类