35 Star 265 Fork 75

Bygones / PHP-DouyinRobot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
DyImg.php 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
Bygones 提交于 2019-06-16 13:47 . 提交代码
<?php
class DyImg
{
/**
* Describe:压缩图
* @Author: Bygones
* Date: 2019-06-16
* Time: 00:04
* @param string $imgsrc
* @param string $imgdst
* @return string
*/
public function compressedImage(string $imgsrc, string $imgdst) {
list($width, $height, $type) = getimagesize($imgsrc);
$new_width = $width;//压缩后的图片宽
$new_height = $height;//压缩后的图片高
if($width >= 600){
$per = 600 / $width;//计算比例
$new_width = $width * $per;
$new_height = $height * $per;
}
switch ($type) {
case 1:
$giftype = check_gifcartoon($imgsrc);
if ($giftype) {
$image_wp = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromgif($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
//90代表的是质量、压缩图片容量大小
imagejpeg($image_wp, $imgdst, 90);
imagedestroy($image_wp);
imagedestroy($image);
}
ob_end_flush();
break;
case 2:
$image_wp = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
//90代表的是质量、压缩图片容量大小
imagejpeg($image_wp, $imgdst, 90);
imagedestroy($image_wp);
imagedestroy($image);
ob_end_flush();
break;
case 3:
$image_wp = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefrompng($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
//90代表的是质量、压缩图片容量大小
imagejpeg($image_wp, $imgdst, 90);
imagedestroy($image_wp);
imagedestroy($image);
break;
}
return $imgdst;
}
}
PHP
1
https://gitee.com/Bygones/PHP-DouyinRobot.git
git@gitee.com:Bygones/PHP-DouyinRobot.git
Bygones
PHP-DouyinRobot
PHP-DouyinRobot
master

搜索帮助