1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
$NetBSD: patch-ag,v 1.1 1999/08/27 10:11:03 agc Exp $
Update for PNG support
--- doc/examples.html 1999/08/27 09:51:38 1.1
+++ doc/examples.html 1999/08/27 09:55:19
@@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
- <title>GIFs on the fly: Examples
+ <title>PNGs on the fly: Examples
</title>
<link rev="made" href="mailto:gleeson@unimelb.edu.au">
<meta name="description"
@@ -18,7 +18,7 @@
<td><h1>fly: Documentation: Examples</h1>
</td>
<td><a href="http://www.unimelb.edu.au/fly/"><img
- src="fly-logo.gif" border="0" hspace="5" vspace="5"
+ src="fly-logo.png" border="0" hspace="5" vspace="5"
alt=" [fly] " width="157" height="52"></a>
</td>
</tr>
@@ -36,7 +36,7 @@
<PRE>#!/usr/local/bin/perl
$flyprog = "/usr/local/bin/fly";
-$outfile = "temp.gif";
+$outfile = "temp.png";
open(FLY,"| $flyprog -o $outfile ");
print FLY "new\n";
@@ -70,7 +70,7 @@
fill 160,96,0,0,0
EOD
-fly -i /tmp/fly.$$ -o test.gif
+fly -i /tmp/fly.$$ -o test.png
</PRE>
</DD>
<DT>Fly Scripts</DT>
@@ -91,9 +91,9 @@
</DD>
</DL>
<P>Can you guess what the above examples produce?
- <A HREF="example.gif">Here's the answer!</A>
+ <A HREF="example.png">Here's the answer!</A>
</P>
-<P><IMG SRC="new.gif" ALT="[New!]"> I have created a <A
+<P><IMG SRC="new.png" ALT="[New!]"> I have created a <A
HREF="http://www.unimelb.edu.au/%7Egleeson/cgi-bin/fly-tester.pl">Fly
Tester</A> CGI program that lets you test fly commands quickly in a
convenient interface. The program is also included in the fly
@@ -102,13 +102,13 @@
<!-- ===================================================================== -->
<hr size="2" noshade>
- <p align="center"><a href="index.html"><img src="nav-home.gif" border="0"
+ <p align="center"><a href="index.html"><img src="nav-home.png" border="0"
alt="[Home]" width="52" height="24"></a> <a
- href="documentation.html"><img src="nav-docs.gif" border="0"
+ href="documentation.html"><img src="nav-docs.png" border="0"
alt="[Documentation]" width="120" height="24"></a> <a
- href="copyright.html"><img src="nav-copyright.gif" border="0"
+ href="copyright.html"><img src="nav-copyright.png" border="0"
alt="[Copyright]" width="86" height="24"></a> <a href="feedback.html"><img
- src="nav-feedback.gif" border="0" alt="[Feedback]" width="80"
+ src="nav-feedback.png" border="0" alt="[Feedback]" width="80"
height="24"></a>
</p>
|