⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jpgraph.php

📁 本代码是为客户联系管理而做的系统
💻 PHP
📖 第 1 页 / 共 5 页
字号:
	if( empty($xa) || empty($ya) )	    JpGraphError::Raise('FuncGenerator : Syntax error in function specification ');					return array($xa,$ya);    }}//=======================================================// CLASS Footer// Description: Encapsulates the footer line in the Graph////=======================================================class Footer {    var $left,$center,$right;    var $iLeftMargin = 3;    var $iRightMargin = 3;    var $iBottomMargin = 3;    function Footer() {	$this->left = new Text();	$this->left->ParagraphAlign('left');	$this->center = new Text();	$this->center->ParagraphAlign('center');	$this->right = new Text();	$this->right->ParagraphAlign('right');    }    function Stroke($aImg) {	$y = $aImg->height - $this->iBottomMargin;	$x = $this->iLeftMargin;	$this->left->Align('left','bottom');	$this->left->Stroke($aImg,$x,$y);	$x = ($aImg->width - $this->iLeftMargin - $this->iRightMargin)/2;	$this->center->Align('center','bottom');	$this->center->Stroke($aImg,$x,$y);	$x = $aImg->width - $this->iRightMargin;	$this->right->Align('right','bottom');	$this->right->Stroke($aImg,$x,$y);    }}    DEFINE('BGRAD_FRAME',1);    DEFINE('BGRAD_MARGIN',2);    DEFINE('BGRAD_PLOT',3);//===================================================// CLASS Graph// Description: Main class to handle graphs//===================================================class Graph {    var $cache=null;		// Cache object (singleton)    var $img=null;			// Img object (singleton)    var $plots=array();	// Array of all plot object in the graph (for Y 1 axis)    var $y2plots=array();// Array of all plot object in the graph (for Y 2 axis)    var $xscale=null;		// X Scale object (could be instance of LinearScale or LogScale    var $yscale=null,$y2scale=null;    var $cache_name;		// File name to be used for the current graph in the cache directory    var $xgrid=null;		// X Grid object (linear or logarithmic)    var $ygrid=null,$y2grid=null; //dito for Y    var $doframe=true,$frame_color=array(0,0,0), $frame_weight=1;	// Frame around graph    var $boxed=false, $box_color=array(0,0,0), $box_weight=1;		// Box around plot area    var $doshadow=false,$shadow_width=4,$shadow_color=array(102,102,102);	// Shadow for graph    var $xaxis=null;		// X-axis (instane of Axis class)    var $yaxis=null, $y2axis=null;	// Y axis (instance of Axis class)    var $margin_color=array(200,200,200);	// Margin color of graph    var $plotarea_color=array(255,255,255);	// Plot area color    var $title,$subtitle,$subsubtitle; 	// Title and subtitle(s) text object    var $axtype="linlin";	// Type of axis    var $xtick_factor;	// Factot to determine the maximum number of ticks depending on the plot with    var $texts=null;		// Text object to ge shown in the graph    var $lines=null;    var $bands=null;    var $text_scale_off=0;	// Text scale offset in world coordinates    var $background_image="",$background_image_type=-1,$background_image_format="png";    var $background_image_bright=0,$background_image_contr=0,$background_image_sat=0;    var $image_bright=0, $image_contr=0, $image_sat=0;    var $inline;    var $showcsim=0,$csimcolor="red"; //debug stuff, draw the csim boundaris on the image if <>0    var $grid_depth=DEPTH_BACK;	// Draw grid under all plots as default    var $iAxisStyle = AXSTYLE_SIMPLE;    var $iCSIMdisplay=false,$iHasStroked = false;    var $footer;    var $csimcachename = '', $csimcachetimeout = 0;    var $iDoClipping = false;    var $y2orderback=true;    var $tabtitle;    var $bkg_gradtype=-1,$bkg_gradstyle=BGRAD_MARGIN;    var $bkg_gradfrom='navy', $bkg_gradto='silver';    var $titlebackground = false;    var	$titlebackground_color = 'lightblue',	$titlebackground_style = 1,	$titlebackground_framecolor = 'blue',	$titlebackground_framestyle = 2,	$titlebackground_frameweight = 1,	$titlebackground_bevelheight = 3 ;    var $titlebkg_fillstyle=TITLEBKG_FILLSTYLE_SOLID;    var $titlebkg_scolor1='black',$titlebkg_scolor2='white';    var $framebevel = false, $framebeveldepth = 2 ;    var $framebevelborder = false, $framebevelbordercolor='black';    var $framebevelcolor1='white@0.4', $framebevelcolor2='black@0.4';//---------------// CONSTRUCTOR    // aWIdth 		Width in pixels of image    // aHeight  	Height in pixels of image    // aCachedName	Name for image file in cache directory     // aTimeOut		Timeout in minutes for image in cache    // aInline		If true the image is streamed back in the call to Stroke()    //			If false the image is just created in the cache    function Graph($aWidth=300,$aHeight=200,$aCachedName="",$aTimeOut=0,$aInline=true) {	GLOBAL $gJpgBrandTiming;	// If timing is used create a new timing object	if( $gJpgBrandTiming ) {	    global $tim;	    $tim = new JpgTimer();	    $tim->Push();	}			// Automatically generate the image file name based on the name of the script that	// generates the graph	if( $aCachedName=="auto" )	    $aCachedName=GenImgName();				// Should the image be streamed back to the browser or only to the cache?	$this->inline=$aInline;			$this->img	= new RotImage($aWidth,$aHeight);	$this->cache 	= new ImgStreamCache($this->img);	$this->cache->SetTimeOut($aTimeOut);	$this->title = new Text();	$this->title->ParagraphAlign('center');	$this->title->SetFont(FF_FONT2,FS_BOLD);	$this->title->SetMargin(3);	$this->subtitle = new Text();	$this->subtitle->ParagraphAlign('center');	$this->subsubtitle = new Text();	$this->subsubtitle->ParagraphAlign('center');	$this->legend = new Legend();	$this->footer = new Footer();	// If the cached version exist just read it directly from the	// cache, stream it back to browser and exit	if( $aCachedName!="" && READ_CACHE && $aInline )	    if( $this->cache->GetAndStream($aCachedName) ) {		exit();	    }					$this->cache_name = $aCachedName;	$this->SetTickDensity(); // Normal density	$this->tabtitle = new GraphTabTitle();    }//---------------// PUBLIC METHODS	    // Should the grid be in front or back of the plot?    function SetGridDepth($aDepth) {	$this->grid_depth=$aDepth;    }	    // Specify graph angle 0-360 degrees.    function SetAngle($aAngle) {	$this->img->SetAngle($aAngle);    }    function SetAlphaBlending($aFlg=true) {	$this->img->SetAlphaBlending($aFlg);    }    // Shortcut to image margin    function SetMargin($lm,$rm,$tm,$bm) {	$this->img->SetMargin($lm,$rm,$tm,$bm);    }    function SetY2OrderBack($aBack=true) {	$this->y2orderback = $aBack;    }    // Rotate the graph 90 degrees and set the margin     // when we have done a 90 degree rotation    function Set90AndMargin($lm=0,$rm=0,$tm=0,$bm=0) {	$lm = $lm ==0 ? floor(0.2 * $this->img->width)  : $lm ;	$rm = $rm ==0 ? floor(0.1 * $this->img->width)  : $rm ;	$tm = $tm ==0 ? floor(0.2 * $this->img->height) : $tm ;	$bm = $bm ==0 ? floor(0.1 * $this->img->height) : $bm ;	$adj = ($this->img->height - $this->img->width)/2;	$this->img->SetMargin($tm-$adj,$bm-$adj,$rm+$adj,$lm+$adj);	$this->img->SetCenter(floor($this->img->width/2),floor($this->img->height/2));	$this->SetAngle(90);	$this->xaxis->SetLabelAlign('right','center');	$this->yaxis->SetLabelAlign('center','bottom');    }	    function SetClipping($aFlg=true) {	$this->iDoClipping = $aFlg ;    }    // Add a plot object to the graph    function Add(&$aPlot) {	if( $aPlot == null )	    JpGraphError::Raise("<b></b> Graph::Add() You tried to add a null plot to the graph.");	if( is_array($aPlot) && count($aPlot) > 0 )	    $cl = get_class($aPlot[0]);	else	    $cl = get_class($aPlot);	if( $cl == 'text' ) 	    $this->AddText($aPlot);	elseif( $cl == 'plotline' )	    $this->AddLine($aPlot);	elseif( $cl == 'plotband' )	    $this->AddBand($aPlot);	else	    $this->plots[] = &$aPlot;    }    // Add plot to second Y-scale    function AddY2(&$aPlot) {	if( $aPlot == null )	    JpGraphError::Raise("<b></b> Graph::AddY2() You tried to add a null plot to the graph.");		$this->y2plots[] = &$aPlot;    }	    // Add text object to the graph    function AddText(&$aTxt) {	if( $aTxt == null )	    JpGraphError::Raise("<b></b> Graph::AddText() You tried to add a null text to the graph.");			if( is_array($aTxt) ) {	    for($i=0; $i < count($aTxt); ++$i )		$this->texts[]=&$aTxt[$i];	}	else	    $this->texts[] = &$aTxt;    }	    // Add a line object (class PlotLine) to the graph    function AddLine(&$aLine) {	if( $aLine == null )	    JpGraphError::Raise("<b></b> Graph::AddLine() You tried to add a null line to the graph.");			if( is_array($aLine) ) {	    for($i=0; $i<count($aLine); ++$i )		$this->lines[]=&$aLine[$i];	}	else	    $this->lines[] = &$aLine;    }    // Add vertical or horizontal band    function AddBand(&$aBand) {	if( $aBand == null )	    JpGraphError::Raise(" Graph::AddBand() You tried to add a null band to the graph.");	if( is_array($aBand) ) {	    for($i=0; $i<count($aBand); ++$i )		$this->bands[] = &$aBand[$i];	}	else	    $this->bands[] = &$aBand;    }    function SetBackgroundGradient($aFrom='navy',$aTo='silver',$aGradType=GRAD_HOR,$aStyle=BGRAD_FRAME) {	$this->bkg_gradtype=$aGradType;	$this->bkg_gradstyle=$aStyle;	$this->bkg_gradfrom = $aFrom;	$this->bkg_gradto = $aTo;    } 	    // Specify a background image    function SetBackgroundImage($aFileName,$aBgType=BGIMG_FILLPLOT,$aImgFormat="auto") {	if( $GLOBALS['gd2'] && !USE_TRUECOLOR ) {	    JpGraphError::Raise("You are using GD 2.x and are trying to use a background images on a non truecolor image. To use background images with GD 2.x you <b>must</b> enable truecolor by setting the USE_TRUECOLOR constant to TRUE. Due to a bug in GD 2.0.1 using any truetype fonts with truecolor images will result in very poor quality fonts.");	}	// Get extension to determine image type	if( $aImgFormat == "auto" ) {	    $e = explode('.',$aFileName);	    if( !$e ) {		JpGraphError::Raise('Incorrect file name for Graph::SetBackgroundImage() : '.$aFileName.' Must have a valid image extension (jpg,gif,png) when using autodetection of image type');	    }	    $valid_formats = array('png', 'jpg', 'gif');	    $aImgFormat = strtolower($e[count($e)-1]);	    if ($aImgFormat == 'jpeg')  {		$aImgFormat = 'jpg';	    }	    elseif (!in_array($aImgFormat, $valid_formats) )  {		JpGraphError::Raise('Unknown file extension ($aImgFormat) in Graph::SetBackgroundImage() for filename: '.$aFileName);	    }    	}	$this->background_image = $aFileName;	$this->background_image_type=$aBgType;	$this->background_image_format=$aImgFormat;    }	    // Adjust brightness and constrast for background image    function AdjBackgroundImage($aBright,$aContr=0,$aSat=0) {	$this->background_image_bright=$aBright;	$this->background_image_contr=$aContr;	$this->background_image_sat=$aSat;    }	    // Adjust brightness and constrast for image    function AdjImage($aBright,$aContr=0,$aSat=0) {	$this->image_bright=$aBright;	$this->image_contr=$aContr;	$this->image_sat=$aSat;    }    // Specify axis style (boxed or single)    function SetAxisStyle($aStyle) {        $this->iAxisStyle = $aStyle ;    }	    // Set a frame around the plot area    function SetBox($aDrawPlotFrame=true,$aPlotFrameColor=array(0,0,0),$aPlotFrameWeight=1) {	$this->boxed = $aDrawPlotFrame;	$this->box_weight = $aPlotFrameWeight;	$this->box_color = $aPlotFrameColor;    }	    // Specify color for the plotarea (not the margins)    function SetColor($aColor) {	$this->plotarea_color=$aColor;    }	    // Specify color for the margins (all areas outside the plotarea)    function SetMarginColor($aColor) {	$this->margin_color=$aColor;    }	    // Set a frame around the entire image    function SetFrame($aDrawImgFrame=true,$aImgFrameColor=array(0,0,0),$aImgFrameWeight=1) {	$this->doframe = $aDrawImgFrame;	$this->frame_color = $aImgFrameColor;	$this->frame_weight = $aImgFrameWeight;    }    function SetFrameBevel($aDepth=3,$aBorder=false,$aBorderColor='black',$aColor1='white@0.4',$aColor2='darkgray@0.4',$aFlg=true) {	$this->framebevel = $aFlg ;	$this->framebeveldepth = $aDepth ;	$this->framebevelborder = $aBorder ;	$this->framebevelbordercolor = $aBorderColor ;	$this->framebevelcolor1 = $aColor1 ;	$this->framebevelcolor2 = $aColor2 ;	$this->doshadow = false ;    }    // Set the shadow around the whole image    function SetShadow($aShowShadow=true,$aShadowWidth=5,$aShadowColor=array(102,102,102)) {	$this->doshadow = $aShowShadow;	$this->shadow_color = $aShadowColor;	$this->shadow_width = $aShadowWidth;	$this->footer->iBottomMargin += $aShadowWidth;	$this->footer->iRightMargin += $aShadowWidth;    }    // Specify x,y scale. Note that if you manually specify the scale    // you must also specify the tick distance with a call to Ticks::Set()    function SetScale($aAxisType,$aYMin=1,$aYMax=1,$aXMin=1,$aXMax=1) {	$this->axtype = $aAxisType;	if( $aYMax < $aYMin || $aXMax < $aXMin )	    JpGraphError::Raise('Graph::SetScale(): Specified Max value must be larger than the specified Min value.');	$yt=substr($aAxisType,-3,3);	if( $yt=="lin" )	    $this->yscale = new LinearScale($aYMin,$aYMax);	elseif( $yt == "int" ) {	    $this->yscale = new LinearScale($aYMin,$aYMax);	    $this->yscale->SetIntScale();	}	elseif( $yt=="log" )	    $this->yscale = new LogScale($aYMin,$aYMax);	else	    JpGraphError::Raise("Unknown scale specification for Y-scale. ($aAxisType)");				$xt=substr($aAxisType,0,3);	if( $xt == "lin" || $xt == "tex" ) {	    $this->xscale = new LinearScale($aXMin,$aXMax,"x");	    $this->xscale->textscale = ($xt == "tex");	}	elseif( $xt == "int" ) {	    $this->xscale = new LinearScale($aXMin,$aXMax,"x");	    $this->xscale->SetIntScale();	}	elseif( $xt == "log" )	    $this->xscale = new LogScale($aXMin,$aXMax,"x");	else	    JpGraphError::Raise(" Unknown scale specification for X-scale. ($aAxisType)");	$this->xscale->Init($this->img);	$this->yscale->Init($this->img);												$this->xaxis = new Axis($this->img,$this->xscale);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -