亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php GD庫的使用

發布時間:2020-06-09 08:38:18 來源:網絡 閱讀:570 作者:q3428532 欄目:web開發
<?php

/**
 * 調整圖片大小
 * $path圖片的寬度大于$width則等比縮放
 * $path圖片的高度大于$height切成多張圖片
 * @param $path 圖片地址
 * @param $width integer|string  圖片寬度
 * @param @height integer|string 圖片高度
 */
function imgResize($path, $width, $height) {
  // 存放生成的圖片路徑
  $imgPaths = array();
  // 獲取圖片寬度/高度/類型
  list($srcW, $srcH, $type) = getp_w_picpathsize($path);
  $type -= 1;

  // 創建源圖像
  $p_w_picpathcreatefromFuns = array('p_w_picpathcreatefromgif', 'p_w_picpathcreatefromjpeg', 'p_w_picpathcreatefrompng');
  $src = $p_w_picpathcreatefromFuns[$type]($path);
  // 圖片的寬度大于$width則等比縮放
  if( $srcW > $width ) {
    $dstHeight = $srcH * ($width / $srcW);
    // 新建一個真彩***像
    $dst = p_w_picpathcreatetruecolor( $width, $dstHeight );
    p_w_picpathcopyresampled($dst, $src,  0, 0, 0, 0, $width, $dstHeight, $srcW, $srcH);
    $src = $dst; 
    // 更新原圖的寬度和高度
    $srcW = $width;
    $srcH = $dstHeight;
  }
  else {
    // 沒有調整寬度
    $width = $srcW;
  }
  
  // 圖片的高度大于$height切成多張圖片
  if( $srcH > $height ) {
    // 切割的高度位置
    $srcY = 0;
    do {
      $dstHeight = ($srcY + $height > $srcH) ? ($srcH - $srcY) : ($height);
      $dst = p_w_picpathcreatetruecolor( $width, $dstHeight );
      p_w_picpathcopyresampled($dst, $src,  0, 0, 0, $srcY, $width, $dstHeight, $width, $dstHeight);
      $filePath = './img/' . md5(microtime(true)) . '.jpg';
      $imgPaths[] = $filePath;
      ImageJpeg($dst, $filePath);
      is_resource($dst) and p_w_picpathdestroy($dst);
      $srcY += $dstHeight;
    }while($srcY < $srcH);
  }
  else {
    // 如果高度符合 則將調整了原圖(也有可能是調整了寬度之后的)保存為文件
    $filePath = './img/' . md5(microtime(true)) . '.jpg';
    $imgPaths[] = $filePath;
    ImageJpeg($src, $filePath);
  }

  // 釋放內存
  isset($src) and is_resource($src) and p_w_picpathdestroy($src);
  isset($dst) and is_resource($dst) and p_w_picpathdestroy($dst);

  return $imgPaths;
}

/**
 * 調整圖片清晰度
 * @param string $path  圖片路徑
 * @param string $quality 清晰度
 * @return string 新的圖片路徑
 */
function reQuality( $path, $quality ) {
    $p_w_picpath_type = p_w_picpath_type_to_extension(exif_p_w_picpathtype($path), false);
    $fun = "p_w_picpathcreatefrom{$p_w_picpath_type}";
    $src = $fun($path);
    $newPath = generateUniqueFilePath('./img/');
    ImageJpeg($src, $newPath, $quality);
    return $newPath;
}

/**
 * 生成唯一的文件路徑
 * @param $basePath string 文件夾路徑
 * @param $suffix string
 * @return string 文件路徑
 */
function generateUniqueFilePath($basePath, $suffix='.jpg') {
  $filePath = $basePath . md5(microtime(true)) . $suffix;
  return $filePath;
}

header('Content-Type:p_w_picpath/png');

$path = './img/jjj.jpg';
$imgPaths = imgResize($path, 10000, 10000);
// reQuality($path, 1);


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

中卫市| 嵩明县| 承德市| 罗山县| 泽普县| 印江| 大姚县| 宕昌县| 蒙山县| 长宁县| 开平市| 溧水县| 玉门市| 盱眙县| 岫岩| 邵阳县| 鹤岗市| 兴业县| 洞头县| 册亨县| 邯郸市| 新野县| 天柱县| 寿阳县| 庄河市| 松溪县| 周宁县| 太康县| 蓬莱市| 莱阳市| 卢湾区| 晋中市| 库车县| 黄梅县| 永吉县| 句容市| 读书| 金阳县| 翼城县| 酒泉市| 南平市|