473,804 Members | 3,903 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

compile php with gd and freetype support for jpgraph

3 New Member
I have php (5.2.4) compiled on redhat 4.0 as followed :
Expand|Select|Wrap|Line Numbers
  1. ./configure \
  2.  --with-oci8=$ORACLE_HOME
  3.  --with-apxs=/usr/local/apache/bin/apxs \
  4.  --with-config-file-path=/usr/local/apache/conf \
  5.  --enable-sigchild \
  6.  --with-gd \
  7.  --with-ttf=/usr/include/freetype2 \
  8.  --with-freetype-dir=/usr/include/freetype2 \
  9.  --with-gd-native-ttf \
  10.  --enable-shared
  11.  
the make & make install runs without errors

But when using the jpgraph, I get an error png image that there is no TTF-support and says to compile php with FreeType support.

What I doing wrong?
testjpgraph.php
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. include ("/install_apache_standalone/jpgraph-1.21b/src/jpgraph.php");
  3. include ("/install_apache_standalone/jpgraph-1.21b/src/jpgraph_bar.php");
  4.  
  5. $db_conn = ocilogon("****","****","***");
  6. $cmdstr = "select * from test";
  7. $parsed = ociparse($db_conn,$cmdstr);
  8. ociexecute($parsed);
  9. $nrows = ocifetchstatement($parsed, $results);
  10. for ($i = 0; $i < $nrows; $i++)
  11. {
  12.   $data[] = $results["MARKS"][$i];
  13.   $leg[] = $results["NAME"][$i];
  14. }
  15.  
  16. $graph = new Graph(250,150,"auto");
  17. $graph->SetScale("textint");
  18. $graph->img->SetMargin(50,30,50,50);
  19. //$graph->AdjBackgroundImage(0.4,0.7,-1); //setting BG type
  20. //$graph->SetBackgroundImage("linux_pez.png",BGIMG_FILLFRAME); //adding image
  21. $graph->SetShadow();
  22.  
  23. $graph->xaxis->SetTickLabels($leg);
  24.  
  25. $bplot = new BarPlot($data);
  26. $bplot->SetFillColor("lightgreen"); // Fill color
  27. $bplot->value->Show();
  28. $bplot->value->SetFont(FF_ARIAL,FS_BOLD);
  29. $bplot->value->SetAngle(45);
  30. $bplot->value->SetColor("black","navy");
  31.  
  32. $graph->Add($bplot);
  33. $graph->Stroke();
  34.  ?>
  35.  
  36.  
Nov 7 '07 #1
0 4225

Sign in to post your reply or Sign up for a free account.

Similar topics

1
1861
by: awaegel | last post by:
Hello, I've been running php/apache/etc locally on my powerbook for a long time, but am having problems activating freetype with a new version of php. I'm using: php 4.4.0 freetype 2.1.10 (compiled from source) gd 2.0.28 (came with php)
1
1729
by: francescomoi | last post by:
Hi. I compiled PHP by using: -------------- './configure' '--prefix=/usr/local/php' '--with-apxs2=/usr/local/httpd/bin/apxs' '--with-mysql=/usr/local/mysql' '--with-curl=/usr/local/include/curl' '--with-gd=/usr/local/gd' '--with-zlib-dir=/usr/local/zlib' '-with-jpeg-dir=/usr/local/jpeg-6b' '--with-ttf=/usr/include/freetype2'
0
1239
by: mchristopher | last post by:
I'm having trouble compiling DOM XML support into PHP 4.4.2 on CentOS 4.3. Everytime I attempt to compile, it spits back this: .... chmod 755 /usr/lib/apache/libphp4.so Installing PHP CLI binary: /usr/local/bin/ Installing PHP CLI man page: /usr/local/man/man1/ Installing PEAR environment: /usr/local/lib/php/ Archive_Tar - already installed: 1.3.1
7
2730
by: Glich | last post by:
Hi, where can I download freetype (>= 2.1.7)? I need it to use matplotlib. I have search a lot but still can not find it. Thanks!
2
2822
by: Lorenzo Thurman | last post by:
I keep getting this error when trying to use fonts with Image_Graph: PHP Fatal error: Call to undefined function: imagettfbbox() in /usr/local/lib/php/Image/Canvas/GD.php on line 1240 After Googling the error, it seems that I was missing Freetype support. I've installed Freetype and rebuilt PHP with Freetype support, but I still get the same error. I look at the output from phpinfo() and I see that PHP was compiled with this switch:...
3
20989
by: rahmawaktu | last post by:
Dear list, i am new to this forum and to JPGraph too. I just install jpgraph to create a graphic to my website. But i got error. Here is the complete code : First is MySQL Database : ( 2 tables) : 1. Table : Hesk_Categories CREATE TABLE `hesk_categories` ( `id` int(5) unsigned NOT NULL auto_increment,
2
3966
by: luckyG | last post by:
I have php (5.2.4) compiled on redhat 4.0 as followed : ./configure \ --with-oci8=$ORACLE_HOME --with-apxs=/usr/local/apache/bin/apxs \ --with-config-file-path=/usr/local/apache/conf \ --enable-sigchild \ --with-gd \ --with-ttf=/usr/include/freetype2 \ --with-freetype-dir=/usr/include/freetype2 \ --with-gd-native-ttf \
2
2446
by: paeh | last post by:
what's wrong for this php code. when I run did not display anything in browser.. this is code: <?php include ("C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/jpgraph-2.3/src/jpgraph.php"); include ("C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/jpgraph-2.3/src/jpgraph_bar.php"); $db = mysql_connect("localhost", "root","") or die(mysql_error());
0
3479
by: eureka2050 | last post by:
Hi all, I am creating a radar chart containing 2 plots using jpgraph. My code is as follows:- include ("./jpgraph/src/jpgraph.php"); include ("./jpgraph/src/jpgraph_radar.php"); // Create the basic radar graph $graph = new RadarGraph(700,500,"auto");
0
9710
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10593
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10340
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10085
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9163
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6858
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4304
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3830
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3000
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.