91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

东辽县| 青海省| 乐山市| 公主岭市| 突泉县| 禄丰县| 齐河县| 朝阳县| 石屏县| 南城县| 同德县| 集安市| 新蔡县| 拜城县| 涞源县| 太湖县| 宜昌市| 武隆县| 波密县| 泾源县| 双鸭山市| 锦州市| 巴林左旗| 宝坻区| 苗栗县| 城口县| 南汇区| 楚雄市| 赣榆县| 甘孜县| 徐汇区| 罗平县| 通榆县| 黑山县| 西安市| 江源县| 开平市| 阿克苏市| 抚州市| 汶川县| 西和县|