程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 創建圖像實例

php 創建圖像實例

編輯:關於PHP編程

使用ImageCreate()創建一個代表空白圖像的變量,這個函數要求以像素為單位的圖像大小的參數,其格式是ImageCreate(x_size, y_size)。如果要創建一個大小為250×250的圖像,就可以使用下面的語句:   

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

  使用imagecreate()創建一個代表空白圖像的變量,這個函數要求以像素為單位的圖像大小的參數,其格式是imagecreate(x_size, y_size)。如果要創建一個大小為250×250的圖像,就可以使用下面的語句:   

  $newimg = imagecreate(250,250);  

 

  由於圖像還是空白的,因此你可能會希望用一些彩色來填充它。你需要首先使用imagecolorallocate()函數用其rgb值為這種顏色指定一個名字,這一函數的格式為imagecolorallocate([image], [red], [green], [blue])。如果要定義天藍色,可以使用如下的語句:  

 

  $skyblue = imagecolorallocate($newimg,136,193,255);  

 

  接下來,需要使用imagefill()函數用這種顏色填充這個圖像,imagefill()函數有幾個版本,例如imagefillrectangle()、imagefillpolygon()等。為簡單起見,我們通過如下的格式使用imagefill()函數:  

  imagefill([image], [start x point], [start y point], [color])

  imagefill($newimg,0,0,$skyblue);  

 

  最後,在圖像建立後釋放圖像句柄和所占用的內存:  

 

 imagepng($newimg);

  imagedestroy($newimg); ?>

  這樣,創建圖像的全部代碼如下所示:

      php教程代碼:
 

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

  $newimg = imagecreate(250,250);

  $skyblue = imagecolorallocate($newimg,136,193,255);

  imagefill($newimg,0,0,$skyblue);

  imagepng($newimg);

  imagedestroy($newimg);

  ?>   

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved