中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

phplot中如何使用圖片生成類

發布時間:2021-07-12 10:10:11 來源:億速云 閱讀:135 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關phplot中如何使用圖片生成類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

1.配置函數:配置phplot使用什么樣的類型,以及以什么樣的方式顯示圖象。

a.SetDataType($which_dt):設定使用的數據類型,在這個里面可以使用多種類型。

(1)text-date:數據沿著x柱,等間距排行。每個數組元素代表x軸上的某一位置的點,他同時也是數組,第一個元素代表x坐標,后面的所有元素都代表y坐標。

(2) data-data:與上面的類型相似,不同的是數值數組的第二個元素代表x坐標,后面的代表y坐標,而第一個元素僅僅是一個標簽。

(3)data-data-error:與data-data類似,不同的是他的數值數組后面還有兩個元素代表error_plus和error_minus,如

(data_labl,x_position,y_position,error_plus,error_minus).

b.SetDataValues($which_dv):把一個數組$which_dv賦給類的一個變量$this->data_values.這個函數要開始作圖之前調用。

c.SetPlotType($which_pt):設定圖表的類型,可以是bars,lines,linepoints,area,points,pie等。

d.SetErrorBarLineWidth($wd):設定錯誤欄的寬度。

e.SetFileFormat($which_file_format):設定輸出的圖象文件的格式,可以是GIF,PNG,JPEG等。還有要看你的GD庫是否支持。

f.SetUseTTF($which_ttf):設定是否使用TTF,如果編譯php支持TTF,就使用SetUseTTF("1");否則設置為0.

2.顯示函數:顯示圖象設定輸出圖表所使用的線條的類型,寬度等參量,還可以設定坐標軸刻度的間距,圖表的大小等。

a.SetErrorBarShape($which_ebs):設定精度線的類型,可以是line或者是tee,如果是tee,則T型線的半度設定為SetErrorBarSize.

b.SetErrprBarSize($which_ebs):設置精度線的寬度。

c.SetHorizTickIncreament($which_ti):設定x軸的顯示刻度的間距。

d.SetHorizTicks($whick_nt):設定x軸顯示刻度的個數。(不能和SetHorizTickIncreament)

e.SetNumVertTicks($which_nt):設定x軸顯示刻度的個數。(不能和SetVertTickIncreament)

f.SetPlotArearpixels($x1,$y1,$x2,$y2):設定圖表大小。

g.SetPointShape($which_pt):設置定點的形狀:rect,circle,diamond,triangle,dot,line,halfline.

h.SetPointSize($whick_ps教程):設定點的寬度。

i.SetPrecisionX($whick_prec):設定x軸的精度。$whick_prec代表小數點后面數字的個數。

j.SetPrecisiony($whick_prec)設定y軸的精度。$whick_prec代表小數點后面數字的個數。

k.SetSjading($whick_s):設定陰影的寬度。

l.SetTickLength($which_tl):設定坐標軸上的標記線的長度,單位為pixel.

m.SetTile($title):設定圖表的標題。

n.SetVertTickIncreament($whick_ti):和SetHorizTicks($whick_nt)這兩個函數用于設定坐標軸上標記線的垂直和水平間隔。

o.SetXDataLabelMaxlength($which_xdlm):設定x軸上的標簽的最大長度。

p.SetXGridLabelType($which_xtf):設定x軸的標簽類型,可以是time,title,data,none或者default.

(1).time:由函數strftime()設定。

(2).title:文本類型。

(3).data:用函數number_format()格式化數字。

(4).none:沒有任何標簽。

(5).default:按照輸入的形式輸出.

3.顏色函數:顏色函數用于設定圖表中的各元素的顯示顏色,包括圖象背景顏色,刪格線的顏色,標題顏色等!

a.SetBackgroundColor($which_color):設定整個圖象的背景顏色。

b.SetGridColor($which_color):設定刪格線的顏色。

c.SetLegend($which_legend):參數是一個文本數組,他的內容顯示在一個圖列框中。

d.SetLegendPixels($which_x,$which_y,$which_type):設定圖列框左下角點的坐標,最后一個參數以后可用。

e.SetLightGridColor($which_color):刪割線線有兩種顏色,這個函數設定其中的一種。

f.SetLineWidth($which_lt):設定圖表中使用的線寬,他也影響精度線的寬度。

g.SetLineStyles($which_sls):設定線條的類型,可以是實線或者虛線。

h.SetPlotBgColor($which_color):設定使用SetPlotAreaPixels()函數設定的區域的顏色。

i.SetTextColor($which_color):設定文本的顏色,默認是黑色。

j.SetTickColor($which_color):設定坐標軸上刻線的顏色。

k.SetTitleColor($which_color):設定標題顏色。

看個實例,生成上面圖形的代碼如下:

復制代碼 代碼如下:

# PHPlot Demo  
# 2008-01-09 ljb  
# For more information see http://sourceforge.net/projects/phplot/   
 
# Load the PHPlot class library:  
require_once 'phplot.php';  
 
# Define the data array: Label, the 3 data sets.  
# Year,  Features, Bugs, Happy Users:  
$data = array(  
  array('2001',  60,  35,  20),  
  array('2002',  65,  30,  30),  
  array('2003',  70,  25,  40),  
  array('2004',  72,  20,  60),  
  array('2005',  75,  15,  70),  
  array('2006',  77,  10,  80),  
  array('2007',  80,   5,  90),  
);  
 
# Create a PHPlot object which will make a 600x400 pixel image:  
$p = new PHPlot(600, 400);  
 
# Use TrueType fonts:  
$p->SetDefaultTTFont('./arial.ttf');  
 
# Set the main plot title:  
$p->SetTitle('PHPlot Customer Satisfaction (estimated)');  
 
# Select the data array representation and store the data:  
$p->SetDataType('text-data');  
$p->SetDataValues($data);  
 
# Select the plot type - bar chart:  
$p->SetPlotType('bars');  
 
# Define the data range. PHPlot can do this automatically, but not as well. 
$p->SetPlotAreaWorld(0, 0, 7, 100);  
 
# Select an overall image background color and another color under the plot:  
$p->SetBackgroundColor('#ffffcc');  
$p->SetDrawPlotAreaBackground(True);  
$p->SetPlotBgColor('#ffffff');  
 
# Draw lines on all 4 sides of the plot:  
$p->SetPlotBorderType('full');  
 
# Set a 3 line legend, and position it in the upper left corner:  
$p->SetLegend(array('Features', 'Bugs', 'Happy Users'));  
$p->SetLegendWorld(0.1, 95);  
# Turn data labels on, and all ticks and tick labels off:  
$p->SetXDataLabelPos('plotdown');  
$p->SetXTickPos('none');  
$p->SetXTickLabelPos('none');  
$p->SetYTickPos('none');  
$p->SetYTickLabelPos('none');  
 
# Generate and output the graph now:  
$p->DrawGraph();

看完上述內容,你們對phplot中如何使用圖片生成類有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

亚东县| 板桥市| 柳林县| 当阳市| 宁河县| 景宁| 赞皇县| 邯郸县| 定边县| 江源县| 佛教| 平舆县| 晋中市| 即墨市| 新营市| 瑞昌市| 家居| 海安县| 尼木县| 开江县| 霍林郭勒市| 汕头市| 陕西省| 孝义市| 和龙市| 精河县| 奉贤区| 沙雅县| 阿坝| 普格县| 宜都市| 政和县| 调兵山市| 行唐县| 旬阳县| 尉氏县| 莱州市| 彰化县| 玉林市| 五河县| 旬阳县|