search
HomeBackend DevelopmentPHP TutorialDetailed explanation of how phplot generates image classes_PHP tutorial
Detailed explanation of how phplot generates image classes_PHP tutorialJul 20, 2016 am 11:09 AM
phppersonalpictureitITutorialyesgenerateusekindDetailed explanation

Detailed explanation of the picture class generated by lot in the php tutorial

I personally use phplot, which is an automatically generated class written using the image function of php. First of all, I only know about it. In the original Some versions of it seem to require various configurations and support, but now they all use the php5 series. Everyone only needs to understand some commonly used functions, just like when we learn a software, we only need to know how to use it. If you are interested, you can study it in depth, but for most of our friends, as long as you can use it, it is fine. After all, it is not commonly used. It is only used when you need to use PHP to draw pictures. So we just need to know how to use it, then
we must know the role of its function, just like when we learn discuz, we just need to know how to use it!
The download address of phplot is http://www.sourceforge.net/projects/phplot/The latest version seems to be phplot5.0
His commonly used functions are divided into several categories: configuration function, display function, color Function
1. Configuration function: configure what type phplot uses and how to display the image.
a.SetDataType($which_dt): Set the data type used. Multiple types can be used in this.
(1)text-date: The data is arranged at equal intervals along the x-column. Each array element represents a point at a certain position on the x-axis. It is also an array. The first element represents the x coordinate, and all subsequent elements of
represent the y coordinate.
(2) data-data: Similar to the above type, except that the second element of the numerical array represents the x coordinate, the following element represents the y coordinate, and the first element is just a label.
(3)data-data-error: Similar to data-data, except that there are two elements after its numerical array representing error_plus and error_minus, such as
(data_labl,x_position,y_position,error_plus,error_minus ).
b.SetDataValues($which_dv): Assign an array $which_dv to a variable $this->data_values ​​of the class. This function should be called before starting to draw.
c.SetPlotType($which_pt): Set the type of chart, which can be bars, lines, linepoints, area, points, pie, etc.
d.SetErrorBarLineWidth($wd): Set the width of the error bar.
e.SetFileFormat($which_file_format): Set the format of the output image file, which can be GIF, PNG, JPEG, etc. It also depends on whether your GD library supports it.
f.SetUseTTF($which_ttf): Set whether to use TTF. If the compiled php supports TTF, use SetUseTTF("1"); otherwise set to 0.

2. Display function: Display image sets the type, width and other parameters of the lines used in the output chart. You can also set the spacing of the coordinate axis scales, the size of the chart, etc.
a.SetErrorBarShape($which_ebs): Set the type of precision line, which can be line or tee. If it is tee, the half degree of the T-shaped line is set to SetErrorBarSize.
b.SetErrprBarSize($which_ebs ): Set the width of the precision line.
c.SetHorizTickIncreament($which_ti): Set the spacing of the x-axis display scale.
d.SetHorizTicks($whick_nt): Set the number of ticks displayed on the x-axis. (Cannot be used with SetHorizTickIncreament)
e.SetNumVertTicks($which_nt): Set the number of ticks displayed on the x-axis. (Cannot be used with SetVertTickIncreament)
f.SetPlotArearpixels($x1,$y1,$x2,$y2): Set the chart size.
g.SetPointShape($which_pt): Set the shape of the fixed point: rect, circle, diamond, triangle, dot, line, halfline.
h.SetPointSize ($whick_ps tutorial): Set the width of the point.
i.SetPrecisionX($whick_prec): Set the precision of the x-axis. $whick_prec represents the number of digits after the decimal point.
j.SetPrecisiony($whick_prec) sets the precision of the y-axis. $whick_prec represents the number of digits after the decimal point.
k.SetSjading($whick_s): Set the width of the shadow.
l.SetTickLength($which_tl): Set the length of the marker line on the coordinate axis, in pixels.
m.SetTile($title): Set the title of the chart.
n.SetVertTickIncreament($whick_ti): and SetHorizTicks($whick_nt) are two functions used to set the vertical and horizontal intervals of the mark lines on the coordinate axis.
o.SetXDataLabelMaxlength($which_xdlm): Set the maximum length of the label on the x-axis.
p.SetXGridLabelType($which_xtf): Set the label type of the x-axis, which can be time, title, data, none or default.
(1).time: Set by the function strftime().
(2).title: text type.
(3).data: Use the function number_format() to format numbers.
(4).none: No tags.
(5).default: Output according to the input form.
3. Color function: The color function is used to set the display color of each element in the chart, including the image background color and the color of the grid line. Title colors and more!
a.SetBackgroundColor($which_color): Set the background color of the entire image.
b.SetGridColor($which_color): Set the color of the grid line.
c.SetLegend($which_legend): The parameter is a text array, and its content is displayed in a chart box.
d.SetLegendPixels($which_x,$which_y,$which_type): Set the coordinates of the lower left corner point of the picture frame. The last parameter will be available later.
e.SetLightGridColor($which_color): The cutting line has two colors. This function sets one of them.
f.SetLineWidth($which_lt): Sets the line width used in the chart. It also affects the width of the precision line.
g.SetLineStyles($which_sls): Set the type of line, which can be solid or dashed.
h.SetPlotBgColor($which_color): Set the color of the area set using the SetPlotAreaPixels() function.
i.SetTextColor($which_color): Set the color of the text, the default is black.
j.SetTickColor($which_color): Set the color of the tick line on the coordinate axis.
k.SetTitleColor($which_color): Set the title color.

Look at an example

The code to generate the above graphic is as follows:

# 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();  

 

 


怎么样,不错吧。。 喜欢的朋友可以到 http://phplot.sourceforge.net/ 官方站下载


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444774.htmlTechArticlephp教程lot生成图片类详解 我个人使用的是phplot,它是一个利用php的图象函数编写的一个自动生成类,首先申明我对他也只是了解. 在原来的...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何使用PHP生成可刷新的图片验证码如何使用PHP生成可刷新的图片验证码Sep 13, 2023 am 11:54 AM

如何使用PHP生成可刷新的图片验证码随着互联网的发展,为了防止恶意攻击和机器自动操作现象,很多网站都使用了验证码来进行用户验证。其中一种常见的验证码类型就是图片验证码,通过生成一张包含随机字符的图片,要求用户输入正确的字符才能进行后续操作。本文将介绍如何使用PHP生成可刷新的图片验证码,并提供具体的代码示例。步骤一:创建验证码图片首先,我们需要创建一个用于生

不再担心下班前被领导叫住开小会,AI助手帮你自动生成会议纪要不再担心下班前被领导叫住开小会,AI助手帮你自动生成会议纪要Sep 04, 2023 pm 11:21 PM

讯飞听见升级会议纪要功能,可以将口语表述直接转化为书面稿,AI能够根据录音总结会议纪要。AI能够帮助您完成会议纪要的撰写工作8月31日,讯飞听见网页端进行了版本升级,新增了PC端实时录音功能,能够利用人工智能智能生成会议纪要。这一功能的推出将大大提高用户在会议后整理内容、跟进重点工作事项的效率。对于经常参加会议的人来说,这个功能无疑是一个非常实用的工具,能够节省大量时间和精力该功能的应用场景主要是PC电脑端录音转文字自动生成会议纪要,旨在为用户提供最优质的服务和最先进的技术,快速提升办公效率的产

如何使用PHP进行基本的自然语言生成如何使用PHP进行基本的自然语言生成Jun 22, 2023 am 11:05 AM

自然语言生成是一种人工智能技术,它能够将数据转换为自然语言文本。在当今的大数据时代,越来越多的业务需要将数据可视化或呈现给用户,而自然语言生成正是一种非常有效的方法。PHP是一种非常流行的服务器端脚本语言,它可以用于开发Web应用程序。本文将简要介绍如何使用PHP进行基本的自然语言生成。引入自然语言生成库PHP自带的函数库并不包括自然语言生成所需的功能,因此

使用Python中的pyWaffle生成一个华夫饼图使用Python中的pyWaffle生成一个华夫饼图Aug 17, 2023 am 11:49 AM

数据可视化对于高效的信息理解和展示至关重要。在众多可用的图表类型中,华夫饼图以方形瓦片在网格状结构中显示数据的新颖方式。强大的Python模块PyWaffle方便了华夫饼图的开发,类似于许多计算和数据分析方法。在本文中,我们将看看如何使用复杂的Python模块PyWaffle创建华夫饼图。让我们安装PyWafle并看看如何使用它来可视化分类数据。在您的cmd中运行以下命令来安装该库,然后将其导入到您的代码中pipinstallpywaffleExample1的中文翻译为:示例1在这个例子中,我们

如何使用PHP生成带有时间限制的二维码?如何使用PHP生成带有时间限制的二维码?Aug 26, 2023 pm 04:34 PM

如何使用PHP生成带有时间限制的二维码?随着移动支付和电子门票的普及,二维码成为了一种常见的技术。在很多场景中,我们可能需要生成一种带有时间限制的二维码,即使在一定时间后,该二维码也将失效。本文将介绍如何使用PHP生成带有时间限制的二维码,并提供代码示例供参考。安装PHPQRCode库要使用PHP生成二维码,我们需要先安装PHPQRCode库。这个库

如何使用Python生成两个日期之间的k个随机日期?如何使用Python生成两个日期之间的k个随机日期?Sep 09, 2023 pm 08:17 PM

生成随机数据在数据科学领域非常重要。从构建神经网络预测、股市数据等来看,通常都会将日期作为参数之一。我们可能需要在两个日期之间生成随机数以进行统计分析。本文将展示如何生成两个给定日期之间的k个随机日期使用随机和日期时间模块日期时间是Python内置的处理时间的库。另一方面,随机模块有助于生成随机数。因此,我们可以结合随机和日期时间模块来生成两个日期之间的随机日期。语法random.randint(start,end,k)这里的random指的是Python随机库。randint方法采用三个重要的

word目录生成错乱怎么办word目录生成错乱怎么办Feb 20, 2024 am 08:08 AM

word目录生成错乱怎么办随着科技的发展,电子文档已经成为我们日常工作和学习中不可或缺的一部分。而在编辑电子文档时,尤其是长篇文章或论文中,目录的生成是一个非常重要的步骤。目录能够方便读者查找到文章的内容和结构,提高阅读效率。然而,有时候我们在生成目录的过程中会遇到一些问题,比如目录生成出错,顺序混乱等。那么,如果word目录生成错乱,我们应该如何解决呢?首

如何生成在在线答题中的错题本如何生成在在线答题中的错题本Sep 25, 2023 am 10:24 AM

如何生成在线答题的错题本在现如今的信息时代,网上答题已经成为了许多学生和教育工作者的常见任务。而错题一直是学习过程中的难题之一,很多人都希望能够方便地生成在线答题的错题本,以便更好地复习和掌握知识。本文将介绍如何通过编程实现在线答题错题本的生成功能,并提供具体的代码示例。第一步:搭建网页界面生成在线答题错题本需要一个网页界面来显示题目和答案。可以使用HTML

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft