search
HomeBackend DevelopmentPHP TutorialGraphical data using Flash (1)_PHP tutorial
Graphical data using Flash (1)_PHP tutorialJul 21, 2016 pm 04:05 PM
bryanflashswfoneandgraphicsdatayesuseIntroduction

by Bryan Mattern 一木Translation

Introduction to SWF and Flash
SWF is a file format used by Macromedia Flash to deliver images, animations and sounds to users on the Internet. Flash enables you to provide a rich and dynamic interface to users. About 90% of Web users can browse SWF content without installing a browser plug-in, and more than 200 million people have downloaded Flash players. Macromedia released the SWF specification in April 1998. Add SWF support to PHP4.
PHP’s built-in ability to dynamically generate images is a feature that attracts me. It can generate reports and interfaces that look more professional and comfortable. In the beginning, I used various GD codes that are littered around the web to create images to display data from my different projects. But I soon became annoyed by the uncertainty of the generated images and decided to try to see if I could solve the problem using vector graphics. I think you'll agree, the results look much better. If a picture can represent a thousand words, imagine what a Flash animation represents?
I will try to keep this example as simple as possible and only talk about the basics. My purpose is just to create a Drog in that holds GIF and PNG images generated by GD. You can add extensions and enhancements to it, such as the various visual effects that Flash is famous for. For example, you can make graphics fade in, dance when the page loads, or dynamically display a few snowflakes. Your imagination is the only limit to PHP's SWF functions.
How to obtain the data that needs to be graphed is best left to the reader as an exercise. Since this article is about dynamically creating Flash files, I will use an imaginary table as a data set in the example to create a graphical view of it. You need to examine your data and decide which chart format is most appropriate. In most cases, a pie chart is a suitable choice, and this is the chart format my examples will take. Line, column or area charts can be created in a similar way.
In this example, suppose we send some packages to several cities, and we want to look at the proportion of packages received in each city. We decided to store the data in the table "city" of the database "world". Let's first create the table and enter the data required for this example.

#
# Table structure for table 'city'
#

DROP TABLE IF EXISTS city;
CREATE TABLE city (
city_id int(14) NOT NULL auto_increment,
city_name varchar(255) NOT NULL,
city_timestamp timestamp(14),
PRIMARY KEY (city_id)
);

#
# Dumping data for table 'city'
#

INSERT INTO city VALUES( '1', 'London', '20000917122625');
INSERT INTO city VALUES( '2', 'London', '20000917122626 ');
INSERT INTO city VALUES( '3', 'London', '20000917122626');
INSERT INTO city VALUES( '4', 'London', '20000917122627');
INSERT INTO city ​​VALUES( '5', 'Paris', '20000917122631');
INSERT INTO city VALUES( '6', 'Paris', '20000917122632');
INSERT INTO city VALUES( '7', ' New York', '20000917122644');
INSERT INTO city VALUES( '8', 'New York', '20000917122645');
INSERT INTO city VALUES( '9', 'New York', '20000917122646 ');
INSERT INTO city VALUES( '10', 'New York', '20000917122646');
INSERT INTO city VALUES( '11', 'New York', '20000917122647');
INSERT INTO city VALUES( '12', 'Hong Kong', '20000917122654');


Configure your system to use SWF
The environment I use is RedHat Linux6.2, Apache 1.3 .12, PHP 4.0.2 (compiled as Apache module). If you're using PHP in Windows, things are a little different. You need to download or compile a Flash Dll, but there is no need to modify the code.
PHP provides the ability to create Shockwave Flash files through Paul Haeberli’s libswf module. You need to download libswf from http://reality.sgi.com/grafica/flash/. Then, you need to configure PHP using the option --with-swf[=DIR], where DIR is the directory where the include and lib directories are located. There must be a swf.h file in the include directory, and a libswf.a file must be in the lib directory. When unzipping the downloaded libswf distribution, these two files will be unzipped into the same directory. You need to move these two files to the correct location. When finished, the directory structure should look like this:

/usr/local/swf/
/include/
swf.h
/lib/ 🎜 >                  /fonts                                                                                                                                         ... Said, the best way is to use an absolute path and copy the above directory to the document root directory of apache.) In addition, there is a small c program in the release version of libswf that can convert type 1 fonts into fonts that can be used by Flash.
Because we need to dynamically create and write SWF files, the web server needs to have write permissions in the directory where the files are stored.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/315793.htmlTechArticleby Bryan Mattern SWF and Flash Introduction SWF is Macromedia Flash used to transmit pictures to users on the Internet. File format for animation and sound. Flash allows you to provide users with a rich...
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
解读CRISP-ML(Q):机器学习生命周期流程解读CRISP-ML(Q):机器学习生命周期流程Apr 08, 2023 pm 01:21 PM

译者 | 布加迪审校 | 孙淑娟目前,没有用于构建和管理机器学习(ML)应用程序的标准实践。机器学习项目组织得不好,缺乏可重复性,而且从长远来看容易彻底失败。因此,我们需要一套流程来帮助自己在整个机器学习生命周期中保持质量、可持续性、稳健性和成本管理。图1. 机器学习开发生命周期流程使用质量保证方法开发机器学习应用程序的跨行业标准流程(CRISP-ML(Q))是CRISP-DM的升级版,以确保机器学习产品的质量。CRISP-ML(Q)有六个单独的阶段:1. 业务和数据理解2. 数据准备3. 模型

苹果M3 Ultra推出全新版本,新增32个CPU核心和80个GPU核心苹果M3 Ultra推出全新版本,新增32个CPU核心和80个GPU核心Nov 13, 2023 pm 11:13 PM

这款芯片可能会搭载高达80个GPU核心,进而成为M3系列中性能最强大的产品。Max两倍核心数量从M1与M2系列的发展模式来看,苹果的「Ultra」版芯片基本上是「Max」版本的两倍核心数量,这是因为苹果实际上将两颗Max芯片透过内部连接技术结合起来,形成了M1Ultra与M2Ultra。80个GPU核心M3Ultra可能拥有「高达80个图形处理核心」。这一预测基于苹果芯片的发展路径:从基础版到「Pro」版,再到图形核心数量翻倍的「Max」版,以及CPU和GPU核心都翻倍的「Ultra」版。举例来

条形统计图用什么呈现数据条形统计图用什么呈现数据Jan 20, 2021 pm 03:31 PM

条形统计图用“直条”呈现数据。条形统计图是用一个单位长度表示一定的数量,根据数量的多少画成长短不同的直条,然后把这些直条按一定的顺序排列起来;从条形统计图中很容易看出各种数量的多少。条形统计图分为:单式条形统计图和复式条形统计图,前者只表示1个项目的数据,后者可以同时表示多个项目的数据。

自动驾驶车道线检测分类的虚拟-真实域适应方法自动驾驶车道线检测分类的虚拟-真实域适应方法Apr 08, 2023 pm 02:31 PM

arXiv论文“Sim-to-Real Domain Adaptation for Lane Detection and Classification in Autonomous Driving“,2022年5月,加拿大滑铁卢大学的工作。虽然自主驾驶的监督检测和分类框架需要大型标注数据集,但光照真实模拟环境生成的合成数据推动的无监督域适应(UDA,Unsupervised Domain Adaptation)方法则是低成本、耗时更少的解决方案。本文提出对抗性鉴别和生成(adversarial d

flash是什么flash是什么Aug 10, 2023 am 10:16 AM

Flash是一种用于创建多媒体和互动内容的软件,具有矢量图形、时间轴动画、交互性和多媒体处理能力等特点。尽管曾经非常流行,但随着新技术的崛起,Flash逐渐被淘汰,并且在2020年停止了官方支持。

数据通信中的信道传输速率单位是bps,它表示什么数据通信中的信道传输速率单位是bps,它表示什么Jan 18, 2021 pm 02:58 PM

数据通信中的信道传输速率单位是bps,它表示“位/秒”或“比特/秒”,即数据传输速率在数值上等于每秒钟传输构成数据代码的二进制比特数,也称“比特率”。比特率表示单位时间内传送比特的数目,用于衡量数字信息的传送速度;根据每帧图像存储时所占的比特数和传输比特率,可以计算数字图像信息传输的速度。

2020年amd显卡性能排名2020年amd显卡性能排名Jan 13, 2024 pm 08:54 PM

amd图形显卡排行1、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6950XT2、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6900XT需要重写的是:3、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6800XT4、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6800需要重写的是:5、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6750XT6、Radeon需要重新写作的内容是:RX需要重新写作的内容是:6700XT7

PPT怎么组合两个图形PPT怎么组合两个图形Mar 20, 2024 pm 05:00 PM

大家好,今天我来给小伙伴们分享PPT怎么组合两个图形的具体操作步骤,大家按照这个步骤去做,一步一步就能学会了操作,以后就可以举一反三了,步骤详情就在下方,小伙伴们快来认真的看一看吧!1.首先,在电脑上打开一个PPT文档,然后新建一个PPT幻灯片,(如下图所示)。2.接着,在上方菜单栏项目【插入】中找到【形状】,并在形状的下拉框中选择需要导入的形状,(如下图红色圈出部分所示)。3.利用PPT的插入功能,依次将三角形和圆形两个形状插入至PPT中,并调整形状的大小和位置,(如下图红色箭头指向所示)。4

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

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.