ホームページ >バックエンド開発 >PHPチュートリアル >jpgraph でエラーが報告されました「エラーがあるため画像を表示できません」
中国語の文字化けの問題のため、中国語フォントを設定する行を追加しました $graph->title->SetFont(FF_SIMSUN,FS_BOLD,14);
追加後、エラーが報告され、画像が表示されませんでしたエラーがあったため表示できませんでした
この文を削除するか、中国語を英語に変更すると、問題はありません。前の出力をクリアするには、ob_clean(); の文を追加する必要があるとのことでした。 , でもどこに追加すればいいのか分かりません。先輩方に指導を仰ぎましょう。
以下がコードです
<?php require_once ('jpgraph/jpgraph.php');require_once ('jpgraph/jpgraph_bar.php');$datay1=array(13,8,19,7,17,6);$datay2=array(4,5,2,7,5,25);// Create the graph.$graph = new Graph(350,250);$graph->SetScale('textlin');$graph->SetMarginColor('silver');// Setup title$graph->title->Set('支持布什的人数统计(万)');$graph->title->SetFont(FF_SIMSUN,FS_BOLD,14);// Create the first bar$bplot = new BarPlot($datay1);$bplot->SetFillGradient('AntiqueWhite2','AntiqueWhite4:0.8',GRAD_VERT);$bplot->SetColor('darkred');// Create the second bar$bplot2 = new BarPlot($datay2);$bplot2->SetFillGradient('olivedrab1','olivedrab4',GRAD_VERT);$bplot2->SetColor('darkgreen');// And join them in an accumulated bar$accbplot = new AccBarPlot(array($bplot,$bplot2));$graph->Add($accbplot);ob_clean();$graph->Stroke();?>
明らかに漢字ライブラリの設定が間違っています
問題ありません中国語を英語に変更したら
明らかに中国語フォントライブラリの設定が間違っています
1. フォントが存在し、名前が同じかどうか ->FF_SIMSUN は定数なので、その特定の値がシステムと一致するかどうかを確認してください
2. エンコーディング
$title="ブッシュ支持者の統計 (10,000)"; $title = iconv("UTF-8", "gb2312", $title);
$graph->title->セット($title);
解決しました!