最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于PHP實現(xiàn)等比壓縮圖片大小

 更新時間:2016年03月04日 11:57:24   作者:zpercx  
通過本段代碼給大家介紹基于php實現(xiàn)等比壓縮圖片大小的相關(guān)知識,代碼簡單易懂,對php壓縮圖片相關(guān)知識感興趣的朋友參考下吧

廢話不多說了,直接給大家貼php等比壓縮圖片大小的相關(guān)代碼了,具體代碼如下所示:

<?php
$im = imagecreatefromjpeg('D:\phpplace\.jpeg');
resizeImage($im,,,'xinde','.jpg');
function resizeImage($im,$maxwidth,$maxheight,$name,$filetype)
{
$pic_width = imagesx($im);
$pic_height = imagesy($im);
echo "start-----------------" ;
if(($maxwidth && $pic_width > $maxwidth) && ($maxheight && $pic_height > $maxheight))
{
if($maxwidth && $pic_width>$maxwidth)
{
$widthratio = $maxwidth/$pic_width;
$resizewidth_tag = true;
}
if($maxheight && $pic_height>$maxheight)
{
$heightratio = $maxheight/$pic_height;
$resizeheight_tag = true;
}
if($resizewidth_tag && $resizeheight_tag)
{
if($widthratio<$heightratio)
$ratio = $widthratio;
else
$ratio = $heightratio;
}
if($resizewidth_tag && !$resizeheight_tag)
$ratio = $widthratio;
if($resizeheight_tag && !$resizewidth_tag)
$ratio = $heightratio;
$newwidth = $pic_width * $ratio;
$newheight = $pic_height * $ratio;
if(function_exists("imagecopyresampled"))
{
$newim = imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($newim,$im,,,,,$newwidth,$newheight,$pic_width,$pic_height);
}
else
{
$newim = imagecreate($newwidth,$newheight);
imagecopyresized($newim,$im,,,,,$newwidth,$newheight,$pic_width,$pic_height);
}
$name = $name.$filetype;
imagejpeg($newim,$name);
imagedestroy($newim);
}
else
{
$name = $name.$filetype;
imagejpeg($im,$name);
} 
} 

以上代碼內(nèi)容是小編給大家介紹的基于PHP實現(xiàn)等比壓縮圖片大小的相關(guān)內(nèi)容,代碼簡單易懂,哪里寫的不好,歡迎各位大俠多多提出寶貴意見,小編非常樂意。

相關(guān)文章

最新評論

麟游县| 南丰县| 石狮市| 化州市| 武城县| 屏边| 阳曲县| 绵竹市| 霞浦县| 广西| 黄大仙区| 旌德县| 犍为县| 包头市| 阳山县| 疏勒县| 安达市| 老河口市| 澄城县| 漳平市| 如东县| 两当县| 恭城| 图们市| 大悟县| 沙河市| 昌图县| 延吉市| 临朐县| 上栗县| 厦门市| 东阳市| 揭西县| 桃江县| 汉中市| 横山县| 佛坪县| 洞口县| 郑州市| 盱眙县| 宝应县|