导航:首页 > 源码编译 > php图片压缩网站源码

php图片压缩网站源码

发布时间:2025-04-07 16:09:42

‘壹’ php写的json接口如何将图片压缩

用imageresized()缩放,图片就小了,或者采用base64压缩~

‘贰’ 如何利用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图片压缩网站源码相关的资料

热点内容
vs编译非常慢 浏览:910
30岁程序员知乎 浏览:556
万网云服务器如何重启 浏览:297
ug塑模部件命令 浏览:277
如何获取类在服务器中的绝对路径 浏览:158
中药材价格查询用什么app 浏览:500
java虚拟机视频 浏览:689
工伤8级伤残的算法 浏览:986
手机怎么样能截图app 浏览:979
google开源程序员 浏览:920
登录火山怎么就服务器出错啥原因 浏览:286
苹果手机怎么把文件夹变成第一页 浏览:70
java程序员面试书籍 浏览:41
按名称顺序解压 浏览:947
插件化注解代码加密 浏览:776
如何编译py格式文件 浏览:859
四库全书里的算法 浏览:630
androidstudio示例 浏览:474
苹果手机通迅录怎么复制到安卓手机里 浏览:136
java接口构造函数 浏览:610