导航:首页 > 文件处理 > php压缩图片内存大小

php压缩图片内存大小

发布时间:2025-02-13 17:22:43

Ⅰ 如何利用php把上传的图片压缩

<?php
//Thefile
$filename='test.jpg';
$percent=0.5;

//Contenttype
header('Content-Type:image/jpeg');

//Getnewdimensions
list($width,$height)=getimagesize($filename);
$new_width=$width*$percent;
$new_height=$height*$percent;

//Resample
$image_p=imagecreatetruecolor($new_width,$new_height);
$image=imagecreatefromjpeg($filename);
imageresampled($image_p,$image,0,0,0,0,$new_width,$new_height,$width,$height);

//Output
imagejpeg($image_p,null,100);
?>

http://php.net/manual/en/function.imageresampled.php

阅读全文

与php压缩图片内存大小相关的资料

热点内容
路由器ttl刷编程器固件 浏览:718
纵向加密密钥协商状态时间 浏览:850
mc花雨庭服务器有些什么 浏览:809
linux制作网页 浏览:19
xlsx加密忘记了怎么办 浏览:999
app湖北农信怎么解约 浏览:426
在线编程教育项目 浏览:759
电信采购5万台服务器干什么用 浏览:200
腾讯云服务器登录地址 浏览:988
程序员在地铁上写字 浏览:555
解压包未知文件格式怎么办 浏览:576
程序员破坏数据库 浏览:331
sh格式如何编译 浏览:344
虚拟服务器云主机哪个好 浏览:98
单片机端口保护 浏览:948
iso压缩gho 浏览:14
网关熔断器算法 浏览:629
不锈钢高度算法 浏览:170
基于单片机的毕业设计论文 浏览:658
久佳跑步机的app怎么下载 浏览:201