成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

PHP中如何定義顏色、繪制點(diǎn)、線和矩形

這篇文章主要介紹PHP中如何定義顏色、繪制點(diǎn)、線和矩形,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)是一家專業(yè)提供曹妃甸企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、H5頁面制作、小程序制作等業(yè)務(wù)。10年已為曹妃甸眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。

在PHP中繪制圖像一切還是基于上一篇文章中的畫布,創(chuàng)建畫布,然后在畫布上進(jìn)行繪制圖像。想到圖像我們就想到了色彩,所以首先,我們來看一下,我們應(yīng)該怎樣在PHP中給圖像定義顏色。

圖像定義顏色

在我們使用PHP進(jìn)行圖像操作時(shí),必然離不開的就是顏色的設(shè)置,不同的顏色勾勒出了這漂亮的圖像。那么在PHP中我們應(yīng)該怎樣給圖像來提供顏色呢?這時(shí)候我們就要用到imagecolorallocate() 和 imagecolorallocatealpha()這兩個(gè)函數(shù)。接下來,我們就來看一看應(yīng)該怎樣使用這兩個(gè)函數(shù)。

  • imagecolorallocate()函數(shù)

imagecolorallocate() 函數(shù)能夠?yàn)閳D像分配顏色,想要設(shè)置多種顏色的話,需要多次調(diào)用該函數(shù),函數(shù)的語法格式:

imagecolorallocate(resource $image, int $red, int $green, int $blue)

其中,$image表示了需要設(shè)置顏色的圖像,該函數(shù)會返回一個(gè)標(biāo)識符,表示了給定的RGB成分組成的顏色,$red,$green 和 $blue 分別是所需要的顏色的紅,綠,藍(lán)成分,取值范圍是 0 到 255 的整數(shù)或者十六進(jìn)制的 0x00 到 0xFF。

示例如下:

<?php
    $image = imagecreate(100, 100);
    $blue = imagecolorallocate($image, 0, 0, 255);
    header('Content-type:image/jpeg');
    imagejpeg($image);
    imagedestroy($image);
?>

輸出結(jié)果:

PHP中如何定義顏色、繪制點(diǎn)、線和矩形

  • imagecolorallocatealpha()函數(shù)

imagecolorallocatealpha()函數(shù)與imagecolorallocate()函數(shù)相比,它們的作用是相同的,但是多了一個(gè)用來設(shè)置透明參數(shù)的alpha,它的語法格式如下:

imagecolorallocatealpha(resource $image, int $red, int $green, int $blue, int $alpha)

其中,前面的參數(shù)與imagecolorallocate()函數(shù)的參數(shù)表示為一致的,$alphab表示的是透明度的參數(shù),取值范圍在 0 到 127 之間,0 表示完全不透明,127 則表示完全透明。

示例如下:

<?php
    $size=300;
    $image=imagecreatetruecolor($size,$size);
    $back=imagecolorallocate($image,0,0,0);
    $border=imagecolorallocate($image,255,255,255);
    imagefilledrectangle($image,0,0,$size-1,$size-1,$back);
    imagerectangle($image,0,0,$size-1,$size-1,$border);
    $yellow_x=100;
    $yellow_y=75;
    $red_x=100;
    $red_y=165;
    $blue_x=187;
    $blue_y=125;
    $radius=150;
    //用alpha值分配一些顏色
    $yellow=imagecolorallocatealpha($image,200,200,0,75);
    $red=imagecolorallocatealpha($image,200,0,0,75);
    $blue=imagecolorallocatealpha($image,0,0,200,75);
    //畫3個(gè)交迭的圓
    imagefilledellipse($image,$yellow_x,$yellow_y,$radius,$radius,$yellow);
    imagefilledellipse($image,$red_x,$red_y,$radius,$radius,$red);
    imagefilledellipse($image,$blue_x,$blue_y,$radius,$radius,$blue);
    //不要忘記輸出正確的header!
    header('Content-type:image/png');
    //最后輸出結(jié)果
    imagepng($image);
    imagedestroy($image);
?>

輸出結(jié)果:

PHP中如何定義顏色、繪制點(diǎn)、線和矩形

由此通過imagecolorallocate() 和 imagecolorallocatealpha()這兩個(gè)函數(shù)已經(jīng)能夠?qū)崿F(xiàn)在圖像上定義顏色了。同時(shí)圖像不僅是由顏色構(gòu)成的,還需要有點(diǎn)、線還有不同的形狀。那接下來我們來看一看,應(yīng)該怎樣去解決這些問題。

繪制點(diǎn)和線

繪制點(diǎn)和線可以說是PHP中繪制圖像最基本的操作了,雖然很基本,但是靈活應(yīng)用起來,可以通過它們繪制出更多復(fù)雜的圖像,我們可以通過 imagesetpixel() 函數(shù)在畫布中繪制一個(gè)點(diǎn),也可以設(shè)置點(diǎn)的顏色,它的函數(shù)的語法格式如下:

imagesetpixel(resource $image, int $x, int $y, int $color)

其中,$image表示的是創(chuàng)建的畫布,$x和$y表示的是在($x,$y)這個(gè)坐標(biāo)點(diǎn),這個(gè)坐標(biāo)點(diǎn)的顏色是$color。

繪制一條線段則可以使用 imageline() 函數(shù),其語法格式如下:

imageline(resource $image, int $x1, int $y1, int $x2, int $y2, int $color)

其中,表示在坐標(biāo)($x1,$y1)到坐標(biāo)($x2,$y2)的一條顏色為$color的線段。

接下來我們可以通過循環(huán)和隨機(jī)數(shù)的結(jié)合來進(jìn)行示例:

<?php
    $img = imagecreate(200, 100);
    imagecolorallocate($img, 0, 0, 0);
    $blue = imagecolorallocate($img, 0, 0, 255);
    $red = imagecolorallocate($img, 255, 0, 0);
    for ($i=0; $i <= 50; $i++) {
        $color = imagecolorallocate($img, rand(0, 255), rand(0, 255), rand(0, 255));
        imagesetpixel($img, rand(0, 200), rand(0, 100), $color);
        imageline($img, rand(0, 200), rand(0, 100), rand(0, 200), rand(0, 100), $color);
    }
    header('Content-type:image/jpeg');
    imagejpeg($img);
    imagedestroy($img);
?>

輸出結(jié)果:

PHP中如何定義顏色、繪制點(diǎn)、線和矩形

繪制矩形

在PHP中,我們想要繪制矩形的話,需要通過 imagerectangle() 或者 imagefilledrectangle() 函數(shù)來進(jìn)行。imagefilledrectangle() 函數(shù)會在繪制完成矩形后填充矩形,但是imagerectangle() 函數(shù)不會。它們的語法格式如下:

imagerectangle(resource $image, int $x1, int $y1, int $x2, int $y2, int $color)
imagefilledrectangle(resource $image, int $x1, int $y1, int $x2, int $y2, int $color)

其中,兩者表示的都是繪制一個(gè)左上角坐標(biāo)為($x1,$y1),右下角坐標(biāo)為($x2,$y2)的矩形,兩者不一樣的是:imagerectangle()函數(shù)后的顏色代表的是矩形邊線的顏色,imagefilledrectangle()函數(shù)后的顏色表示的是矩形內(nèi)的填充顏色。

接下來通過示例通過 imagerectangle() 或者 imagefilledrectangle() 函數(shù)分別繪制一個(gè)矩形,示例如下:

<?php
    $img = imagecreate(300, 150);
    imagecolorallocate($img, 255, 255, 255);
    $green = imagecolorallocate($img, 0, 255, 0);
    $blue = imagecolorallocate($img, 0, 0, 255);
    imagerectangle($img, 5, 5, 145, 145, $green);
    imagefilledrectangle($img, 150, 5, 295, 145, $blue);
    header('Content-type:image/jpeg');
    imagejpeg($img);
    imagedestroy($img);
?>

輸出結(jié)果:

PHP中如何定義顏色、繪制點(diǎn)、線和矩形

以上是“PHP中如何定義顏色、繪制點(diǎn)、線和矩形”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

當(dāng)前名稱:PHP中如何定義顏色、繪制點(diǎn)、線和矩形
文章地址:http://jinyejixie.com/article30/poecso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、App開發(fā)、網(wǎng)頁設(shè)計(jì)公司、網(wǎng)站設(shè)計(jì)公司、用戶體驗(yàn)、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
镇沅| 罗源县| 蒙山县| 伊川县| 临城县| 嘉善县| 津市市| 安多县| 曲麻莱县| 祁门县| 舞阳县| 浠水县| 曲水县| 罗定市| 巴东县| 朝阳市| 广南县| 博乐市| 长岛县| 偏关县| 马公市| 阿拉善左旗| 湖口县| 丰原市| 建湖县| 曲松县| 固安县| 沂源县| 长寿区| 玛曲县| 新晃| 兖州市| 若尔盖县| 阿尔山市| 丁青县| 都江堰市| 大安市| 九台市| 集贤县| 中阳县| 无锡市|