首页 >

Php Image Resize图片大小调整的函数代码【PHP】

后端开发|php教程Php Image Resize图片大小调整的函数代码【PHP】
图片大小
后端开发-php教程
学生打分系统源码下载,ubuntu中汉字乱码,爬虫动物的名字,php邮箱项目,雅诗兰黛SEO现状lzw
function my_image_resize($src_file, $dst_file, $dst_width=32, $dst_height=32) { 
if($dst_width <1 || $dst_height <1) {
echo "params width or height error !";
exit();
}
if(!file_exists($src_file)) {
echo $src_file . " is not exists !";
exit();
}
在线会议系统源码,在vscode中加入图片,内存盘 ubuntu,tomcat开启失败原因,多代理爬虫,php 全角字符正则,广州营销seo哪家有名,股票t 0系统网站源码,安防器材模板lzw
$type=exif_imagetype($src_file);
$support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF);
html音乐播放源码,vscode怎么实现页面跳转,ubuntu 闪退,mac关闭tomcat,sqlite append,网页设计网站官网,怎样把mysql数据库上传到空间,2008自定义服务器,wordpress页面编辑插件,敏捷前端框架,爬虫价格监控,clone php,seo与sem的关系,springboot 页面模板,怎么修改网页标签名,祭祀公墓网站源码,iphone 查看网页源代码,bootstrap查询页面模板,如何修改网站后台地址,html静态页面源代码,问题单管理系统源码,程序商城源码lzw
if(!in_array($type, $support_type,true)) {
echo "this type of image does not support! only support jpg , gif or png";
exit();
}

switch($type) {
case IMAGETYPE_JPEG :
$src_img=imagecreatefromjpeg($src_file);
break;
case IMAGETYPE_PNG :
$src_img=imagecreatefrompng($src_file);
break;
case IMAGETYPE_GIF :
$src_img=imagecreatefromgif($src_file);
break;
default:
echo "Load image error!";
exit();
}
$src_w=imagesx($src_img);
$src_h=imagesy($src_img);
$ratio_w=1.0 * $dst_width/$src_w;
$ratio_h=1.0 * $dst_height/$src_h;
if ($src_w<=$dst_width && $src_h<=$dst_height) {
$x = ($dst_width-$src_w)/2;
$y = ($dst_height-$src_h)/2;
$new_img=imagecreatetruecolor($dst_width,$dst_height);
imagecopy($new_img,$src_img,$x,$y,0,0,$dst_width,$dst_height);
switch($type) {
case IMAGETYPE_JPEG :
imagejpeg($new_img,$dst_file,100);
break;
case IMAGETYPE_PNG :
imagepng($new_img,$dst_file);
break;
case IMAGETYPE_GIF :
imagegif($new_img,$dst_file);
break;
default:
break;
}
} else {
$dstwh = $dst_width/$dst_height;
$srcwh = $src_w/$src_h;
if ($ratio_w <= $ratio_h) {
$zoom_w = $dst_width;
$zoom_h = $zoom_w*($src_h/$src_w);
} else {
$zoom_h = $dst_height;
$zoom_w = $zoom_h*($src_w/$src_h);
}

$zoom_img=imagecreatetruecolor($zoom_w, $zoom_h);
imagecopyresampled($zoom_img,$src_img,0,0,0,0,$zoom_w,$zoom_h,$src_w,$src_h);
$new_img=imagecreatetruecolor($dst_width,$dst_height);
$x = ($dst_width-$zoom_w)/2;
$y = ($dst_height-$zoom_h)/2+1;
imagecopy($new_img,$zoom_img,$x,$y,0,0,$dst_width,$dst_height);
switch($type) {
case IMAGETYPE_JPEG :
imagejpeg($new_img,$dst_file,100);
break;
case IMAGETYPE_PNG :
imagepng($new_img,$dst_file);
break;
case IMAGETYPE_GIF :
imagegif($new_img,$dst_file);
break;
default:
break;
}
}
}


Php Image Resize图片大小调整的函数代码【PHP】
  • 基于jQuery的图片大小自动适应实现代码【jquery】
  • 基于jQuery的图片大小自动适应实现代码【jquery】 | 基于jQuery的图片大小自动适应实现代码【jquery】 ...

    Php Image Resize图片大小调整的函数代码【PHP】
  • JQ获取动态加载的图片大小的正确方法分享【jquery】
  • JQ获取动态加载的图片大小的正确方法分享【jquery】 | JQ获取动态加载的图片大小的正确方法分享【jquery】 ...

    Php Image Resize图片大小调整的函数代码【PHP】
  • 图片大小怎么调到20k
  • 图片大小怎么调到20k | 图片大小怎么调到20k ...