溫馨提示×

溫馨提示×

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

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

imagecopyresampled函數(shù)怎么在php中使用

發(fā)布時(shí)間:2021-04-01 17:04:05 來源:億速云 閱讀:182 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)imagecopyresampled函數(shù)怎么在php中使用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識(shí)有一定的了解。

語法

bool imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )

參數(shù)

dst_image目標(biāo)圖象連接資源。
src_image源圖象連接資源。
dst_x目標(biāo) X 坐標(biāo)點(diǎn)。
dst_y目標(biāo) Y 坐標(biāo)點(diǎn)。
src_x源的 X 坐標(biāo)點(diǎn)。
src_y源的 Y 坐標(biāo)點(diǎn)。
dst_w目標(biāo)寬度。
dst_h目標(biāo)高度。
src_w源圖象的寬度。
src_h源圖象的高度。

成功時(shí)返回 TRUE, 或者在失敗時(shí)返回 FALSE。

案例

案例(圖像裁減):

<?php
  $targ_w = $targ_h = 150; // 設(shè)置目標(biāo)寬度與高度
  $jpeg_quality = 90; // 圖片質(zhì)量90,滿分為100
  $src = 'demo_files/pool.jpg'; // 被處理的圖片
  $img_r = imagecreatefromjpeg($src); // 獲取原圖
  $dst_r = ImageCreateTrueColor( $targ_w, $targ_h ); // 獲取新圖
  imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
  $targ_w,$targ_h,$_POST['w'],$_POST['h']); // 目標(biāo)圖 源圖 目標(biāo)X坐標(biāo)點(diǎn) 目標(biāo)Y坐標(biāo)點(diǎn) 源的X坐標(biāo)點(diǎn) 源的Y坐標(biāo)點(diǎn) 目標(biāo)寬度 目標(biāo)高度 源圖寬度 源圖高度
  header('Content-type: image/jpeg');
  imagejpeg($dst_r,null,$jpeg_quality); // 輸出圖象到瀏覽器或文件
?>

案例二(重新取樣):

<?php
// 源文件
$filename = '1.jpg';
// 設(shè)置最大寬高
$width = 400;
$height = 400;
// Content type
header('Content-Type: image/jpeg');
// 獲取新尺寸
list($width_orig, $height_orig) = getimagesize($filename);
$ratio_orig = $width_orig/$height_orig;
if ($width/$height > $ratio_orig) {
  $width = $height*$ratio_orig;
} else {
  $height = $width/$ratio_orig;
}
// 重新取樣
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// 輸出
imagejpeg($image_p, null, 100);
?>

附上上傳圖片的三種思路

1.選擇圖片,提交表單,服務(wù)器統(tǒng)一處理上傳,保存路徑

2.選擇圖片,上傳,獲取路徑,提交表單,保存路徑

3.選擇圖片,上傳到服務(wù)器,通過某種途徑獲取到服務(wù)器的圖片,保存到本地

關(guān)于imagecopyresampled函數(shù)怎么在php中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI