 |
|
|
 |
 |
|
ลองรันไฟล์นั้นดูซิครับ โดยส่งค่าให้มันเหมือนในรูปที่เรียกมันอะ แล้วจะรู้ว่ามันมี error อะไร ถ้ารูปไม่ขึ้นแสดงว่ามี error อยู่
|
 |
 |
 |
 |
Date :
2009-03-30 11:09:04 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองเอาโค้ด หน้าสร้างกราฟ กะ หน้าเรียกมาดูเลยดีกว่าครับ (อย่าลืมครอบด้วยแทคโค้ด ) 
|
 |
 |
 |
 |
Date :
2009-03-30 11:13:37 |
By :
lozomac |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รันไฟล์ไหนคะ
รันไฟล์ที่เรียกรูป รูปจะไม่ขึ้นค่ะ
รันไฟล์ที่สร้างรูปมีแต่ภาษาต่างดาวค่ะขึ้นเต็มไปหมด
ไม่รู้ว่า error อะไร
ตัวคิวรี่ไม่น่าจะ error เพราะคิวรี่ในหน้าอื่นไม่ error ค่ะ
สรุปแล้วไฟล์ที่สร้างกราฟเราสามารถยัดเอาคิวรี่เข้าไปแปะได้ป่าว
|
 |
 |
 |
 |
Date :
2009-03-30 11:18:25 |
By :
auai13 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เอาโค๊ดมาแปะครับ ตามคุณ a-mac 
|
 |
 |
 |
 |
Date :
2009-03-30 11:20:18 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตัวอย่างที่ผมเคยใช้
Code (PHP) chart.php
<?php
include "../connect.php";
include ("jpgraph/jpgraph.php");
include ("jpgraph/jpgraph_bar.php");
$sql_D="select * from ตาราง where D_status='1'";
$result_D=mysql_db_query($dbname,$sql_D);
$num_D=mysql_num_rows($result_D);
for($a=0;$a<$num_D;$a++)
{
$record_D=mysql_fetch_array($result_D);
$D_name=$record_D[D_name];
$D_id=$record_D[D_id];
$sql_SB="select * from ตาราง where D_id='$D_id'";
$result_SB=mysql_db_query($dbname,$sql_SB);
$num_SB=mysql_num_rows($result_SB);
$sql_maxSB="select * from ตาราง";
$result_maxSB=mysql_db_query($dbname,$sql_maxSB);
$num_maxSB=mysql_num_rows($result_maxSB);
$datay[$a]=$num_SB*100/$num_maxSB;
$name[$a]=$D_name;
}
// Setup the graph.
$graph = new Graph(700,500,"auto");
$graph->img->SetMargin(60,30,30,40);
$graph->SetScale("textlin");
$graph->SetMarginColor("teal");
$graph->SetShadow();
// Setup color for axis and labels
$graph->xaxis->SetColor("black","white");
$graph->yaxis->SetColor("black","white");
// Setup font for axis
$graph->xaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
$graph->yaxis->SetFont(FF_VERDANA,FS_NORMAL,10);
// Create the bar pot
$bplot = new BarPlot($datay);
$bplot->SetWidth(0.6);
$bplot->value->show();
// Setup color for gradient fill style
$tcol=array(100,100,255);
$fcol=array(255,100,100);
$bplot->SetFillGradient($fcol,$tcol,GRAD_HOR);
$graph->Add($bplot);
// Finally send the graph to the browser
$graph->Stroke();
?>
ส่วนสร้างกราฟอยู่ที่ // Create the bar pot
ตรงนี้เป็นการเรียกใช้
Code (PHP)
<?php
<IMG SRC="chart.php" BORDER="0" ALT="">
?>

|
 |
 |
 |
 |
Date :
2009-03-30 11:30:09 |
By :
lozomac |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณค่ะ ทำที่เครื่องได้แล้ว รูปขึ้น
แต่ทีนี้มีปัญหาว่าพออัพขึ้น server
รูปกราฟไม่ขึ้นค่ะ
ไม่รู้ว่าต้องไปเซ็ตอะไรเพิ่มอีกหรือเปล่า
|
 |
 |
 |
 |
Date :
2009-03-30 14:24:45 |
By :
auai13 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
สร้างไฟล์ มาอันนึง ในนั้นเขียนโค๊ด
Code (PHP)
<?php
phpinfo();
?>
จากนั้น รันไฟล์นั้นบน server แล้วมองหา GD2 ว่ามัน enable อยู่หรือไม่ ถ้าไม่โทรบอกเจ้าของ server ว่าช่วยเปิดให้หน่อย ถ้า enable อยู่แล้วคงต้องดูว่า path ถูกต้องหรือไม่ หรือว่า เขียนรับไฟล์ด้วย POST GET หรือเปล่าเพราะ server ส่วนมากจะปิด register_global ครับ
|
 |
 |
 |
 |
Date :
2009-03-30 14:32:17 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มันขึ้น error ว่า
JpGraph Error
Font file"/usr/X11R6/lib/X11/fonts/truetype/comic.ttf"
is not readable or does not exist.
|
 |
 |
 |
 |
Date :
2009-03-30 15:01:36 |
By :
auai13 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
set folder fonts และตัวข้างใน fonts ให้มันเป็น 755 ให้มันอ่านได้ครับ
หรือจะเอาเป็น 777 ไปโลดก็ได้ แต่ไม่แนะนำ
|
 |
 |
 |
 |
Date :
2009-03-30 15:13:46 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|