導航:首頁 > 圖片大全 > php如何縮放圖片

php如何縮放圖片

發布時間:2023-05-15 20:48:32

A. php 怎麼壓縮圖片的大小

php壓縮圖片的大小:
<?php
$im=imagecreatefromjpeg('D:phpplace.jpeg');
resizeImage($im,,,'xinde','.jpg');
functionresizeImage($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("imageresampled"))
{
$newim=imagecreatetruecolor($newwidth,$newheight);
imageresampled($newim,$im,,,,,$newwidth,$newheight,$pic_width,$pic_height);
}
else
{
$newim=imagecreate($newwidth,$newheight);
imageresized($newim,$im,,,,,$newwidth,$newheight,$pic_width,$pic_height);
}
$name=$name.$filetype;
imagejpeg($newim,$name);
imagedestroy($newim);
}
else
{
$name=$name.$filetype;
imagejpeg($im,$name);
}
}

B. php實現圖片等比例縮放代碼

新建文件index.php,需要在統計目錄下有個圖片為q.jpg(可根據源碼進行更改圖片的名稱)
源代碼如下:
<?php
$filename="q.jpg";
$per=0.3;
list($width,
$height)=getimagesize($filename);
$n_w=$width*$per;
$n_h=$height*$per;
$new=imagecreatetruecolor($n_w,
$n_h);
$img=imagecreatefromjpeg($filename);
//拷貝部分圖像並調整
imageresized($new,
$img,0,
0,0,
0,$n_w,
$n_h,
$width,
$height);
//圖像輸出新圖片、另存為
imagejpeg($new,
"q1.jpg");
imagedestroy($new);
imagedestroy($img);
?>
使用瀏覽器運行過後,在index.php同級的目錄下會有個q1.jpg,這個圖片就是等比例縮放後的圖片,路徑可以自己在源代碼裡面更改,放在自己的項目當中去或寫個方法也行
以上所述上就是本文的全部內容了,希望對大家學習php語言能夠有所幫助。

閱讀全文

與php如何縮放圖片相關的資料

熱點內容
美術花盆和花的圖片簡單 瀏覽:143
水果怎麼擺好看圖片 瀏覽:536
千與千尋人物圖片大全 瀏覽:241
委屈漫畫圖片女孩 瀏覽:402
背景圖片簡約可愛清新 瀏覽:927
圖片狼抱著一個女孩 瀏覽:170
文檔中圖片如何快捷設置大小 瀏覽:255
貂蟬去衣服圖片大全 瀏覽:91
美女背影高清壁紙圖片全屏 瀏覽:58
圖片如何設置標題 瀏覽:807
漂亮文字動態圖片大全 瀏覽:64
七天打卡表可愛圖片 瀏覽:35
波波頭發型效果圖片 瀏覽:658
圖片插入word中無法選中怎麼辦 瀏覽:219
大叔洗衣服的圖片 瀏覽:444
Word里圖片置頂如何加空格 瀏覽:201
蔣丞圖片高清動漫 瀏覽:302
放美女和平精英圖片 瀏覽:385
黑鼻子可愛圖片 瀏覽:854
word轉換pdf時圖片丟失 瀏覽:290