溫馨提示×

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

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

使用php怎么給一張圖片的局部打馬賽克

發(fā)布時(shí)間:2021-01-16 11:27:11 來(lái)源:億速云 閱讀:232 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

使用php怎么給一張圖片的局部打馬賽克?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

原理:

對(duì)圖片中選定區(qū)域的每一像素,增加若干寬度及高度,生成矩型。而每一像素的矩型重疊在一起,就形成了馬賽克效果。
本例使用GD庫(kù)的imagecolorat獲取像素顏色,使用imagefilledrectangle畫(huà)矩型。

代碼如下:

<?php  

/** 圖片局部打馬賽克
* @param  String  $source 原圖
* @param  Stirng  $dest   生成的圖片
* @param  int     $x1     起點(diǎn)橫坐標(biāo)
* @param  int     $y1     起點(diǎn)縱坐標(biāo)
* @param  int     $x2     終點(diǎn)橫坐標(biāo)
* @param  int     $y2     終點(diǎn)縱坐標(biāo)
* @param  int     $deep   深度,數(shù)字越大越模糊
* @return boolean
*/ 
function imageMosaics($source, $dest, $x1, $y1, $x2, $y2, $deep){ 
 
    // 判斷原圖是否存在 
    if(!file_exists($source)){ 
        return false; 
    } 
 
    // 獲取原圖信息 
    list($owidth, $oheight, $otype) = getimagesize($source); 
 
    // 判斷區(qū)域是否超出圖片 
    if($x1>$owidth || $x1<0 || $x2>$owidth || $x2<0 || $y1>$oheight || $y1<0 || $y2>$oheight || $y2<0){ 
        return false; 
    } 
 
    switch($otype){ 
        case 1: $source_img = imagecreatefromgif($source); break; 
        case 2: $source_img = imagecreatefromjpeg($source); break; 
        case 3: $source_img = imagecreatefrompng($source); break; 
        default: 
            return false; 
    } 
 
    // 打馬賽克 
    for($x=$x1; $x<$x2; $x=$x+$deep){ 
        for($y=$y1; $y<$y2; $y=$y+$deep){ 
            $color = imagecolorat($source_img, $x+round($deep/2), $y+round($deep/2)); 
            imagefilledrectangle($source_img, $x, $y, $x+$deep, $y+$deep, $color); 
        } 
    } 
 
    // 生成圖片 
    switch($otype){ 
        case 1: imagegif($source_img, $dest); break; 
        case 2: imagejpeg($source_img, $dest); break; 
        case 3: imagepng($source_img, $dest); break; 
    } 
 
    return is_file($dest)? true : false; 
 

 
$source = 'source.jpg'; 
$dest = 'dest.jpg'; 
 
$flag = imageMosaics($source, $dest, 176, 98, 273, 197, 4); 
echo '<img src="'.$source.'">'; 
echo '<img src="'.$dest.'">'; 
?>

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

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

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

php
AI