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

溫馨提示×

溫馨提示×

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

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

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

發布時間:2021-01-16 11:27:11 來源:億速云 閱讀:242 作者:Leah 欄目:開發技術

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

原理:

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

代碼如下:

<?php  

/** 圖片局部打馬賽克
* @param  String  $source 原圖
* @param  Stirng  $dest   生成的圖片
* @param  int     $x1     起點橫坐標
* @param  int     $y1     起點縱坐標
* @param  int     $x2     終點橫坐標
* @param  int     $y2     終點縱坐標
* @param  int     $deep   深度,數字越大越模糊
* @return boolean
*/ 
function imageMosaics($source, $dest, $x1, $y1, $x2, $y2, $deep){ 
 
    // 判斷原圖是否存在 
    if(!file_exists($source)){ 
        return false; 
    } 
 
    // 獲取原圖信息 
    list($owidth, $oheight, $otype) = getimagesize($source); 
 
    // 判斷區域是否超出圖片 
    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.'">'; 
?>

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

php
AI

兴隆县| 聊城市| 高青县| 伊川县| 十堰市| 磴口县| 喜德县| 海林市| 罗源县| 桃园县| 乐昌市| 大化| 开封市| 永寿县| 临泉县| 罗平县| 齐齐哈尔市| 周至县| 连南| 图片| 邢台县| 永和县| 绥化市| 延寿县| 休宁县| 桦甸市| 鹤岗市| 喀喇沁旗| 盘山县| 通州区| 呼图壁县| 乡城县| 广昌县| 沙河市| 德阳市| 博白县| 桓台县| 景谷| 田东县| 北海市| 临安市|