国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

php實現等比例壓縮圖片

2024-05-05 00:04:44
字體:
來源:轉載
供稿:網友

本文實例為大家分享了php實現等比例壓縮圖片的具體代碼,供大家參考,具體內容如下

/**   * desription 壓縮圖片   * @param sting $imgsrc 圖片路徑   * @param string $imgdst 壓縮后保存路徑   */  public function compressedImage($imgsrc, $imgdst) {    list($width, $height, $type) = getimagesize($imgsrc);        $new_width = $width;//壓縮后的圖片寬    $new_height = $height;//壓縮后的圖片高            if($width >= 600){      $per = 600 / $width;//計算比例      $new_width = $width * $per;      $new_height = $height * $per;    }        switch ($type) {      case 1:        $giftype = check_gifcartoon($imgsrc);        if ($giftype) {          header('Content-Type:image/gif');          $image_wp = imagecreatetruecolor($new_width, $new_height);          $image = imagecreatefromgif($imgsrc);          imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);          //90代表的是質量、壓縮圖片容量大小          imagejpeg($image_wp, $imgdst, 90);          imagedestroy($image_wp);          imagedestroy($image);        }        break;      case 2:        header('Content-Type:image/jpeg');        $image_wp = imagecreatetruecolor($new_width, $new_height);        $image = imagecreatefromjpeg($imgsrc);        imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);        //90代表的是質量、壓縮圖片容量大小        imagejpeg($image_wp, $imgdst, 90);        imagedestroy($image_wp);        imagedestroy($image);        break;      case 3:        header('Content-Type:image/png');        $image_wp = imagecreatetruecolor($new_width, $new_height);        $image = imagecreatefrompng($imgsrc);        imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);        //90代表的是質量、壓縮圖片容量大小        imagejpeg($image_wp, $imgdst, 90);        imagedestroy($image_wp);        imagedestroy($image);        break;    }  }

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VeVb武林網。


注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 云霄县| 潮安县| 晋宁县| 同德县| 花垣县| 县级市| 拉萨市| 罗源县| 屏东市| 连州市| 蚌埠市| 阳东县| 囊谦县| 西贡区| 辛集市| 郯城县| 沙坪坝区| 西充县| 临沧市| 东光县| 延庆县| 即墨市| 饶阳县| 石狮市| 临洮县| 永嘉县| 华池县| 桂林市| 丹江口市| 方正县| 亚东县| 宜兰市| 湟中县| 汉寿县| 渑池县| 辉南县| 长白| 从江县| 永川市| 武强县| 新昌县|