亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

php怎么創建圖像

發布時間:2021-07-02 09:33:33 來源:億速云 閱讀:129 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關php怎么創建圖像,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

php創建圖像具體步驟:1、設定標頭,告訴瀏覽器要生成的MIME類型;2、創建一個畫布;3、進行顏色管理;4、填充顏色;5、繪制圖形和文字;6、輸出圖像;7、銷毀圖像。

本文操作環境:windows7系統、PHP7.1版,DELL G3電腦

PHP 創建圖像的具體步驟

一、設定標頭,告訴瀏覽器你要生成的MIME 類型

共三種類型:

  • header(‘content-type:image/png’)

  • header ( ‘content-type: image/gif’);

  • header ( ‘content-type: image/jpeg’ );

<?php header("content-type: image/png");

二、創建一個畫布,以后的操作都將基于此畫布區域

resource imagecreatetruecolor ( int $width , int $height ) 新建一個真彩色圖像
返回一個圖像標識符,代表了一幅大小為 width 和 height 的黑色圖像。
返回值:成功后返回圖象資源,失敗后返回 FALSE 。

$width = 200;
$height = 100;
$img = imagecreatetruecolor($width,$height);

三、顏色管理

**int imagecolorallocate ( resource $image , int $red , int $green , int $blue )**為一幅圖像分配顏色
red , green 和 blue 分別是所需要的顏色的紅,綠,藍成分。這些參數是 0 到 255 的整數或者十六進制的 0x00 到 0xFF

$color = imagecolorallocate($img,0xcc,0xcc,0xcc); // 灰色

四、填充顏色

bool imagefill ( resource $image , int $x , int $y , int $color )
image 圖像的坐標 x , y (圖像左上角為 0, 0)處用 color 顏色執行區域填充(即與 x, y 點顏色相同且相鄰的點都會被填充)。

imagefill($img,0,0,$color);

五、繪制圖形、文字

  1. imagesetpixel() 在 image 圖像中用 color 顏色在 x , y 坐標(圖像左上角為 0,0)上畫一個點
    bool imagesetpixel ( resource $image , int $x , int $y , int $color )
    例:在畫布上隨機畫100個點

for ($i= 0; $i < 100; $i++) { 
	$color = imagecolorallocate($img,rand(0,25), rand(0,255), rand(0,255));
	$x = rand(0,$width);
	$y = rand(0,$height);
	imagesetpixel($img, $x, $y, $color);
}
  1. imageline() 用 color 顏色在圖像 image 中從坐標 x1 , y1 到 x2 , y2 (圖像左上角為0, 0)畫一條線段
    bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
    例:在畫布上隨機畫10條線段

for ($i= 0; $i < 10; $i++) { 
	$color = imagecolorallocate($img,rand(0,25), rand(0,255), rand(0,255));
	$x = rand(0,$width);
	$y = rand(0,$height);
	$x1 = rand(0,$width);
	$y1 = rand(0,$height);
	imageline($img, $x, $y, $x1, $y1,$color);
}
  1. imagerectangle() 用 col 顏色在 image 圖像中畫一個矩形,其左上角坐標為 x1, y1,右下角坐標為x2, y2。圖像的左上角坐標為 0, 0。

bool imagerectangle ( resource $image , intbool imagerectangle ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $col )

  1. imagefilledrectangle() 在 image 圖像中畫一個用 color 顏色填充了的矩形,其左上角坐標為 x1,y1 ,右下角坐標為 x2 , y2 。0, 0 是圖像的最左上角。

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

  1. 繪制文字
    array imagettftext ( resource $image , float $size , float $anglearray imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text)
    size :字體的尺寸。根據 GD 的版本,為像素尺寸(GD1)或點(磅)尺寸(GD2)。
    angle :角度制表示的角度,0 度為從左向右讀的文本。更高數值表示逆時針旋轉。例如 90 度表示從下向上讀的文本。
    由 x , y 所表示的坐標定義了第一個字符的基本點(大概是字符的左下角)。
    color :顏色索引
    fontfile :是想要使用的 TrueType 字體的路徑。 (從我的電腦c盤里的Windows的fonts文件夾里找)
    text :UTF-8 編碼的文本字符串。

$color = imagecolorallocate($img,154, 75, 65));
$font = "simsunb.ttf";
$str = "hello , how are you?";
imagettftext($img, 30, 45, $x, $y, $color, $font, $str);

六、輸出圖像

三種方式:

  • bool imagepng ( resource $image [, string $filename ] )
    將 GD 圖像流(image )以 PNG 格式輸出到標準輸出(通常為瀏覽器),或者如果用 filename 給出了文件名則將其輸出到該文件。

  • bool imagegif ( resource $image [, string $filename ] )

  • bool imagejpeg ( resource $image [, string $filename [, int
    $quality ]])

imagepng($img);

七、銷毀圖像

bool imagedestroy ( resource $image )
釋放與 image 關聯的內存

imagedestroy($img);

關于“php怎么創建圖像”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

php
AI

长阳| 安仁县| 雷山县| 财经| 工布江达县| 正镶白旗| 雅安市| 汾西县| 湾仔区| 宁都县| 江城| 安陆市| 敖汉旗| 晋江市| 任丘市| 富民县| 瑞丽市| 新源县| 崇礼县| 凤台县| 靖安县| 建瓯市| 武汉市| 会同县| 龙海市| 正镶白旗| 大连市| 伊金霍洛旗| 青州市| 外汇| 澄江县| 泰和县| 葫芦岛市| 盐津县| 宁阳县| 双辽市| 达尔| 当阳市| 区。| 濮阳县| 六盘水市|