File: chapter02.html

package info (click to toggle)
png-definitive-guide 20060430-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,848 kB
  • sloc: makefile: 11
file content (1714 lines) | stat: -rw-r--r-- 62,036 bytes parent folder | download | duplicates (4)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE>Applications: WWW Browsers and Servers (PNG: The Definitive Guide)</TITLE>
<!-- META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1" -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">

<!-- http://www.w3.org/TR/REC-CSS2/box.html -->
<STYLE TYPE="text/css">
  P { margin-bottom: 0em }
  UL {
    margin-bottom: 0em;
    margin-top: 0em;
    list-style: disc;
  }
  LI {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
  }
</STYLE>

<LINK REV="made" HREF="http://pobox.com/~newt/greg_contact.html">
<!--  Copyright (c) 1999 O'Reilly and Associates.  -->
<!--  Copyright (c) 2002-2006 Greg Roelofs.  -->
</HEAD>

<body bgcolor="#ffffff" text="#000000">


<hr> <!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->

<a href="chapter01.html"><img width=24 height=13 border=0 align="left"
 src="images/prev.png" alt="&lt;-"></a>

<a href="chapter03.html"><img width=24 height=13 border=0 align="right"
 src="images/next.png" alt="-&gt;"></a>

<div align="center">
  <a href="chapter01.html"><font size="-1" color="#000000"
   ><b>PREVIOUS</b></font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
     href="toc.html"><font size="-1" color="#000000"
   ><b>CONTENTS</b></font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
     href="chapter03.html"><font size="-1" color="#000000"
   ><b>NEXT</b></font></a>
</div>

<hr> <!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->


<h1 class="chapter">Chapter 2. Applications: WWW Browsers and Servers</h1>

<div class="htmltoc"><h4 class="tochead">Contents:</h4><p>
<a href="#png.ch02.div.1">2.1. WWW Browsers</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.1">2.1.1. Netscape Navigator</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.2">2.1.2. Microsoft Internet Explorer</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.3">2.1.3. Opera</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.4">2.1.4. Acorn Browse</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.5">2.1.5. Arena</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.6">2.1.6. Amaya</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7">2.1.7. Other Browsers</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.1">2.1.7.1. Amiga</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.2">2.1.7.2. Acorn</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.3">2.1.7.3. BeOS</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.4">2.1.7.4. Macintosh</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.5">2.1.7.5. NeXTStep/OpenStep</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.7.6">2.1.7.6. OS/2</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.1.8">2.1.8. Client-Side Workarounds: The OBJECT Tag</a><br />
<a href="#png.ch02.div.2">2.2. WWW Servers</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.2.1">2.2.1. ``Standard'' Servers</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.2.2">2.2.2. Internet Information Server</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.2.3">2.2.3. Server-Side Workarounds: Content Negotiation</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.2.3.1">2.2.3.1. Apache variants files</a><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="#png.ch02.div.2.3.2">2.2.3.2. Apache MultiViews</a><br />
</p></div>


<p>Since the Web is where some of PNG's more uncommon features--alpha, gamma
and color correction, two-dimensional interlacing--are most apparent and
useful, it makes sense to begin our coverage of PNG-supporting applications
with a look at web browsers and web servers.</p>

<!--	GRR POST-1999 UPDATE    -->
<font color="#006600">

<p>
<em>Like all of the application chapters, this one has aged a great deal since
1999--at least, the browser part of it has.  (The status of web servers is
virtually unchanged.)  With the exception of the final rows in Tables 
<a href="#png.ch02.tbl.1">2-1</a> and <a href="#png.ch02.tbl.3">2-3</a>--which
describe the level of PNG support in Netscape Navigator and Microsoft Internet
Explorer, respectively, something that continues to be of particular interest
to readers of this book--I have not updated the text in any way.  However, the
<a href="http://www.libpng.org/pub/png/">PNG web site</a> is updated regularly
and includes both a general summary of browser status and a complete list of
PNG-supporting browsers:</em>
</p>

<p>
<blockquote>
<pre class="code"><a href=
    "http://www.libpng.org/pub/png/pngstatus.html#browsers"
    >http://www.libpng.org/pub/png/pngstatus.html#browsers</a>
<a href=
    "http://www.libpng.org/pub/png/pngapbr.html"
    >http://www.libpng.org/pub/png/pngapbr.html</a></pre>
</blockquote>
</p>

<p>
<em>It complements the more detailed and explanatory information presented in
this chapter.</em>
</p>

</font>
<!--	END GRR POST-1999 UPDATE    -->


<div class="sect1"><a name="png.ch02.div.1" />
<h2 class="sect1">2.1. WWW Browsers</h2>


<p>
<a name="INDEX-103" />
<a name="INDEX-104" />
<a name="INDEX-105" />
<a name="INDEX-106" />
Although there are dozens of web browsers available, most of which have
supported PNG since 1995 or 1996, for the vast majority of users and
webmasters there are only two that count: Netscape Navigator and Microsoft
Internet Explorer. Collectively referred to as ``the Big Two,'' these
browsers' level of support for any given feature largely determines the
viability of said feature. PNG support is a good example.</p>


<a name="png.ch02.div.1.1" /><div class="sect2">
<h3 class="sect2">2.1.1. Netscape Navigator</h3>


<p>
<a name="INDEX-107" />
<a name="INDEX-108" />
Netscape's Navigator browser, which originally shipped standalone but more
recently has been bundled as part of the Communicator suite, supplanted NCSA
Mosaic late in 1994 as the standard browser by which all others were measured.
Version 1.1N was released in the spring of 1995, at roughly the same time as
the frozen PNG specification, but despite the hopes and efforts of the PNG
developers, the first Navigator 2.0 betas shipped later that year with animated GIF
support rather than PNG. Navigator 2.0 did offer the possibility of
platform-specific, third-party PNG support via Netscape's new plug-in
interface, but only for Windows and Macintosh. Alas, even that was fatally
flawed from an image-support perspective: Navigator's native image-handling
code (via the HTML <b class="emphasis-bold">IMG</b> tag) had no provision for handing off unknown
image types to plug-ins. That meant that even if PNG plug-ins were written
for both supported platforms, and even if a majority of users downloaded and
installed a plug-in, it would be useless for standard HTML--only pages
using Netscape's proprietary <b class="emphasis-bold">EMBED</b> tag would invoke the custom code.
Moreover, Navigator 2.0 plug-ins were given no access to the existing page
background, which meant that PNG transparency would be completely ignored.</p>


<p>The Navigator 3.0 betas in 1996 extended plug-in support to include Unix
platforms as well, but they fixed none of the fundamental problems in the
plug-in API.<a href="#FOOTNOTE-13">[13]</a>


The interface was considerably revamped in 1997 for the 4.0 betas, however,
finally allowing transparency support via something called a <em class="emphasis">windowless
plug-in</em>--though only for the Windows and Macintosh platforms. Support
<a name="INDEX-109" />was also added for images referenced via the new HTML <b class="emphasis-bold">OBJECT</b>
tag.  But the basic lack of a connection between plug-ins and the
native <b class="emphasis-bold">IMG</b>-tag code persisted, and this barrier extended to
the new <b class="emphasis-bold">OBJECT</b>-handling code as well--even a JPEG or GIF
image in an <b class="emphasis-bold">OBJECT</b> tag would fail unless an appropriate
plug-in were found.  Should the outer <b class="emphasis-bold">OBJECT</b> happen to be a
PNG, Navigator would fail to render even the inner GIF or JPEG in the
absence of a PNG plug-in. Unlike <b class="emphasis-bold">IMG</b> tags, Navigator required
<b class="emphasis-bold">OBJECT</b> tags to include the otherwise optional <b class="emphasis-bold">HEIGHT</b>
and <b class="emphasis-bold">WIDTH</b> attributes to invoke a plug-in. In at least
one version, the browser would ignore not only an undimensioned
<b class="emphasis-bold">OBJECT</b> but also all subsequent dimensioned ones.</p><blockquote class="footnote">


<a name="FOOTNOTE-13" /><p>[13] Applications Programming Interface, the means by which one piece
of code (in this case, the plug-in) talks to another (in this case,
the browser). APIs are also how programs request services from the
operating system or the graphical windowing system.</p>


</blockquote>


<p><a name="INDEX-110" />
<a name="INDEX-111" />But in November 1997, a year after the World Wide Web Consortium (W3C)
officially recommended PNG for web use, Netscape released Navigator 4.04 with
native PNG support--that is, it was at last capable of displaying PNG images
referenced in HTML <b class="emphasis-bold">IMG</b> tags without the need for a third-party
plug-in. Unfortunately, versions 4.04 through 4.51 had no support for any


type of transparency, nor did they support gamma correction, and their
handling of <b class="emphasis-bold">OBJECT</b> tags remained broken. At least a few of
these releases, including 4.5, had a bug that effectively caused any
<a name="INDEX-112" />
<a name="INDEX-113" />PNG image served by Microsoft Internet Information Servers to be
rendered as the dreaded broken-image icon. (I'll come back to this in
the server section later in this chapter, but the bug is fixed in
Navigator 4.51.)  But the 4.x versions did support progressive display
of interlaced PNGs, at least.</p>


<p>Concurrent with the later Communicator 4.0 releases, on March 31, 1998,
Netscape released most of the source code to its development version of
Communicator, nominally a pre-beta version ``5.0.''  Developers around the
world promptly dug into the code to fix their favorite bugs and add their
<a name="INDEX-114" />pet features. One nice surprise was that the so-called Mozilla sources
already contained a minimal level of transparency support. There were two
main problems with it, however: the transparency mask for all but the
final pass of interlaced images was scaled incorrectly--a minor bug, hardly
unexpected given the early stage of development--and the transparency
was either fully off or fully on for any given pixel, regardless of whether
multilevel transparency information (an alpha channel) was present. The
latter problem proved to be more serious than it sounded. Because of the
way Mozilla's layout engine worked, at any given moment the code had no idea
what the background looked like; instead, it depended on the local windowing
system to composite partly transparent foreground objects with the background
image(s). In other words, adding full support for alpha transparency was
not something that could be done just once in the image-handling code, but instead
required modifying the ``front end'' code for each windowing system supported:
at a minimum, Windows, Macintosh, and Unix's X Window System, plus any new
ports that got added along the way.</p>


<p>Difficult as it may sound, fixing Mozilla's (and therefore Navigator's)
support for PNG alpha channels is by no means an insurmountable challenge.
But in one of life's little ironies, the person who initially volunteered
to fix the code, and who thereafter nominally became responsible for it,
also somehow agreed to write this book. Alas, when push came to shove,
the book is what got the most attention. <b class="emphasis-bold">:-)</b>  But all is not lost;


by the time this text reaches print, full alpha support should be well on
its way into Mozilla and then into Navigator 5.0 as well.</p>


<p><a href="#png.ch02.tbl.1">Table 2-1</a> summarizes the status and level of PNG support in all of the major
releases of Netscape's browser to date. The latest public releases,
Navigator 4.08 and 4.51, are available for Windows 3.x, Windows 95/98/NT,
Macintosh 68k and PowerPC, and more than a dozen flavors of Unix; the web
page is at <a href="http://home.netscape.com/browsers/">http://home.netscape.com/browsers/</a>.
Version 4.04 for OS/2 Warp is available only from IBM's site,
<a href="http://www.software.ibm.com/os/warp/netscape/">http://www.software.ibm.com/os/warp/netscape/</a>.
</p>


<a name="png.ch02.tbl.1" />
<div class="table" align="center">

<p>
<table width="502" border="0">
  <tr>
    <td>
      <b class="emphasis-bold">Table 2-1.</b>
      <i>PNG Support in Netscape Navigator and Mozilla</i>
    </td>
  </tr>
</table>
</p>

<p>
<table width="502" border="1">

<tr>
<td><b class="emphasis-bold">Version</b></td>
<td><b class="emphasis-bold">PNG Support?</b></td>
<td><b class="emphasis-bold">Level of Support
<?x-space 2p?><?x-space 2p?></b></td>
</tr>


<tr>
<td>NN 1.x</td>
<td>No</td>
<td>N/A</td>
</tr>


<tr>
<td>NN 2.x</td>
<td>Plug-in (Win/Mac only)</td>
<td><p><b class="emphasis-bold">EMBED</b> tag only; no transparency
<a name="INDEX-115" /></p></td>
</tr>


<tr>
<td>NN 3.x</td>
<td>Plug-in (all platforms)</td>
<td><b class="emphasis-bold">EMBED</b> tag only; no transparency</td>
</tr>


<tr>
<td>NN 4.0-4.03</td>
<td>Plug-in (all platforms)</td>
<td><p><b class="emphasis-bold">EMBED</b> or <b class="emphasis-bold">OBJECT</b>; transparency possible on Windows and Macintosh</p></td>
</tr>


<tr>
<td>NN 4.04-4.8</td>
<td>Native (all platforms)</td>
<td><b class="emphasis-bold">IMG</b>; no transparency</td>
</tr>


<tr>
<td>Moz 4/1998 - 3/2000</td>
<td>Native (all platforms)</td>
<td><b class="emphasis-bold">IMG</b>; binary transparency</td>
</tr>


<!--	GRR POST-1999 UPDATE    -->
<tr>
<td><font color="#006600">NN 6.x, NN 7.x, Moz 1.x</font></td>
<td><font color="#006600">Native (all platforms)</font></td>
<td><font color="#006600"><p><b class="emphasis-bold">IMG</b>; full alpha transparency</p></font></td>
</tr>



</table>
</p>
</div>


<p><a href="#png.ch02.tbl.2">Table 2-2</a> summarizes the PNG support in a number of third-party plug-ins.
Note that the Windows QuickTime 3.0 plug-in installs itself in every copy
of Navigator and Internet Explorer on the machine, taking over the
<a name="INDEX-116" /><b class="emphasis-bold">image/png</b> media type in the process. This effectively breaks
the browsers' built-in PNG support (if any) and may be true of other plug-ins
as well. To remove the QuickTime plug-in from a particular instance of a
browser, find its plug-ins directory--usually called <em class="emphasis">Plugins</em>--and
delete or remove the file <em class="emphasis">npqtplugin.dll</em> (or move it elsewhere).
</p>


<a name="png.ch02.tbl.2" />
<div class="table" align="center">

<p>
<table width="502" border="0">
  <tr>
    <td>
      <b class="emphasis-bold">Table 2-2.</b>
      <i>PNG Support in Netscape Plug-ins</i>
    </td>
  </tr>
</table>
</p>

<p>
<table width="502" border="1">

<tr>
<td><b class="emphasis-bold">Name</b></td>
<td><b class="emphasis-bold">Platform(s)</b></td>
<td><b class="emphasis-bold">Plug-in<br />API<br />Level</b></td>
<td><b class="emphasis-bold">Level of Support
<?x-space 2p?><?x-space 2p?></b></td>
</tr>


<tr>
<td>PNG Live 1.0</td>
<td><p>Win 9x/NT, Mac PPC</p></td>
<td>2.0</td>
<td><p>No transparency, no gamma, no progressive display</p></td>
</tr>


<tr>
<td>PNG Live 2.0b5</td>
<td>Win 9x/NT</td>
<td>4.0</td>
<td><p>Full transparency if no background chunk, broken gamma, progressive display</p></td>
</tr>


<tr>
<td>QuickTime 3.0</td>
<td><p>Win 9x/NT, Mac 68k/PPC</p></td>
<td>2.0</td>
<td><p>No transparency, no progressive display</p></td>
</tr>


<tr>
<td>PNG Magick 0.8.5</td>
<td>Unix/X</td>
<td>3.0</td>
<td><p>No transparency, no progressive display, requires ImageMagick</p></td>
</tr>


<tr>
<td>G. Costa plug-in 0.9</td>
<td>OS/2</td>
<td>2.0</td>
<td><p>No transparency, progressive display
<?x-space 5p?></p></td>
</tr>

</table>
</p>
</div>



<p>Netscape's online programming documentation for plug-ins may be found at
<a href="http://developer.netscape.com/docs/manuals/communicator/plugin/">http://developer.netscape.com/docs/manuals/communicator/plugin/</a>.
The PNG Live plug-in, versions 1.0 and 2.0b5, is available from
<a href="http://codelab.siegelgale.com/solutions/png_index.html">http://codelab.siegelgale.com/solutions/png_index.html</a> and
<a href="http://codelab.siegelgale.com/solutions/pnglive2.html">http://codelab.siegelgale.com/solutions/pnglive2.html</a>, respectively.<a href="#FOOTNOTE-14">[14]</a>


Apple's QuickTime is downloadable from
<a href="http://www.apple.com/quicktime/">http://www.apple.com/quicktime/</a>.
Rasca Gmelch's PNG Magick plug-in is available from
<a href="http://home.pages.de/~rasca/pngplugin/">http://home.pages.de/~rasca/pngplugin/</a>, and the ImageMagick home page
is at <a href="http://www.wizards.dupont.com/cristy/ImageMagick.html">http://www.wizards.dupont.com/cristy/ImageMagick.html</a>.
And Giorgio Costa's OS/2 plug-in can be downloaded directly from
<a href="http://hobbes.nmsu.edu/pub/os2/apps/internet/www/browser/npgpng09.zip">http://hobbes.nmsu.edu/pub/os2/apps/internet/www/browser/npgpng09.zip</a>.


















<a name="INDEX-117" /></p><blockquote class="footnote">


<a name="FOOTNOTE-14" /><p>[14] The codelab site went offline in March 1999, and there has been no
word from Siegel and Gale whether this is permanent.</p>


</blockquote>
</div>








<a name="png.ch02.div.1.2" /><div class="sect2">
<h3 class="sect2">2.1.2. Microsoft Internet Explorer</h3>


<p><a name="INDEX-118" />
<a name="INDEX-119" />
<a name="INDEX-120" />Microsoft's web browser lagged Netscape's in features and performance through
its first two major releases, but with the release of Internet Explorer 3.0,
general consensus was that it had largely caught up. IE 3.0 was the first
Microsoft release to include support for Netscape-style plug-ins and, in that
manner, became the first release to support PNG in any way--though only on
the Windows platform. But with the


release of the first IE 4.0 beta in the spring of 1997, followed by
the official public release of version 4.0 in October 1997, Microsoft
took the lead from Netscape, at least in terms of PNG support. IE 4.0
for Windows incorporated native PNG support, including progressive
display, gamma correction, and some transparency. The latter was an
odd sort of binary transparency, however, and apparently applied only
to RGBA-palette images; images with a full alpha channel were rendered
completely opaque, always against a light gray background. For
palette images, IE's threshold for deciding which pixels were opaque
and which were transparent was not set at 0.3%, as the PNG
specification somewhat unfortunately recommends, nor at 50%, as one
might intuitively expect, but instead at something like 99.7% opacity.
That is, unless a given pixel were completely opaque, IE 4.0 would
render it completely transparent. Needless to say, this resulted in
some odd and unintended rendering effects that could have been
mitigated by dithering the alpha channel down to a binary transparency
mask.</p>


<p><a name="INDEX-121" />Internet Explorer's handling of PNG images in HTML 4.0 <b class="emphasis-bold">OBJECT</b>
tags is decidedly buggy. Like Navigator, it will fail to render an
<b class="emphasis-bold">OBJECT</b> PNG with its native code, instead preferring to seek an
ActiveX plug-in of some sort. But IE 4.0 does not necessarily limit
itself to its own plug-ins; it has been observed to adopt Netscape
plug-ins from elsewhere on the computer, and since it apparently
doesn't support the Navigator 4.0 plug-in API, it fails on newer
plug-ins such as PNG Live 2.0. Even worse, when two (or more)
<b class="emphasis-bold">OBJECT</b>s are nested, IE 4.0 will attempt to render <em class="emphasis">both</em>
images.</p>


<p>It is also noteworthy that Internet Explorer 4.0 cannot be used to
view standalone PNG images, even though it can do so if the images are
embedded within a web page with <b class="emphasis-bold">IMG</b> tags. Presumably this was
simply an oversight, but it has ramifications for setting up the PNG
media type within the Windows registry.
</p>


<p>Internet Explorer 5.0 for 32-bit Windows was released in March 1999,
and in most respects its PNG support was unchanged from version 4.0.
The inability to view standalone PNGs was fixed (allowing IE 5.0 to
be used as an ordinary image viewer), but in all other regards PNG
support appears to have stagnated. <b class="emphasis-bold">OBJECT</b> PNGs are still
only displayed if the ``Run ActiveX Controls and Plug-ins''
setting is enabled (under <b class="emphasis-bold">Tools</b> &#8594; <b class="emphasis-bold">Internet Options</b> &#8594; <b class="emphasis-bold">Security</b>),
even though it ends up using the same internal PNG code as it does for
IMG PNGs. Even worse, <b class="emphasis-bold">OBJECT</b> PNGs are given a fat border,
which results in the appearance of horizontal and vertical
scrollbars around each one, and there is no transparency support at
all for <b class="emphasis-bold">OBJECT</b>s. As in IE 4.0, nested <b class="emphasis-bold">OBJECT</b>s are all
rendered, side by side. With ActiveX disabled, IE 5.0 does revert to
whatever <b class="emphasis-bold">IMG</b> tag is inside the <b class="emphasis-bold">OBJECT</b>s, but not before
it pops up one or two warning boxes every time it displays such a web
page. Its transparency support is unchanged; only palette images are
displayed with transparency, and the threshold for complete
transparency is still set at 99.7% opacity.</p>


<p><a name="INDEX-122" />Fortunately for Mac users, the development of Internet Explorer for
Macintosh is handled by a separate group, and the yet-unreleased
version 5.0 reportedly will have complete support for alpha
transparency in PNG images. Of course, in the meantime, Mac fans are
stuck with version 4.5, which has no PNG support at all.</p>


<p>Official releases of IE 5.0 exist for Windows 3.x, Windows 9x/NT, and
two flavors of Unix (Solaris and HP-UX). PNG support in the Unix and
16-bit Windows versions is reported to be similar to that in the
32-bit Windows version.</p>


<p><a href="#png.ch02.tbl.3">Table 2-3</a> summarizes Internet Explorer's level of PNG support to date. The Internet Explorer home page is currently at
<a href="http://www.microsoft.com/windows/ie/">http://www.microsoft.com/windows/ie/</a>.
</p>


<a name="png.ch02.tbl.3" />
<div class="table" align="center">

<p>
<table width="502" border="0">
  <tr>
    <td>
      <b class="emphasis-bold">Table 2-3.</b>
      <i>PNG Support in Internet Explorer</i>
    </td>
  </tr>
</table>
</p>

<p>
<table width="502" border="1">

<tr>
<td><b class="emphasis-bold">Version</b></td>
<td><b class="emphasis-bold">PNG support?</b></td>
<td><b class="emphasis-bold">Level of Support
<?x-space 2p?><?x-space 2p?></b></td>
</tr>

<tr>
<td>IE 1.x</td>
<td>No</td>
<td>N/A</td>
</tr>

<tr>
<td>IE 2.x</td>
<td>No</td>
<td>N/A</td>
</tr>

<tr>
<td>IE 3.x</td>
<td>Plug-in</td>
<td><b class="emphasis-bold">EMBED</b> tag only; no transparency</td>
</tr>

<tr>
<td>IE 4.0</td>
<td>Native (Win32; Unix?)</td>
<td><p><b class="emphasis-bold">IMG</b>; binary transparency (palette images only) with skewed threshold</p></td>
</tr>

<tr>
<td>IE 4.5</td>
<td>Plug-in (Macintosh only)</td>
<td><b class="emphasis-bold">EMBED</b> tag only; no transparency</td>
</tr>

<tr>
<td>IE 5.x</td>
<td>Native (Win32)</td>
<td><p><b class="emphasis-bold">IMG</b>; binary transparency (palette images only) with skewed threshold</p></td>
</tr>

<!--	GRR POST-1999 UPDATE    -->
<tr>
<td><font color="#006600">IE 5.x</font></td>
<td><font color="#006600"><p>Native (Macintosh)</p></font></td>
<td><font color="#006600"><p><b class="emphasis-bold">IMG</b>; full alpha transparency</p></font></td>
</tr>

<tr>
<td><font color="#006600">IE 6.x</font></td>
<td><font color="#006600">Native (Win32)</font></td>
<td><font color="#006600"><p><b class="emphasis-bold">IMG</b>; binary transparency (palette images only) with skewed threshold</p></font></td>
</tr>

</table>
</p>
</div>


<p>
<a name="INDEX-123" />
<a name="INDEX-124" />
<a name="INDEX-125" />
</p>
</div>



<a name="png.ch02.div.1.3" /><div class="sect2">
<h3 class="sect2">2.1.3. Opera</h3>


<p><a name="INDEX-126" />Opera, the small-footprint, high-speed browser from Norway, is by some
measures<a href="#FOOTNOTE-15">[15]</a>


the third most popular browser for the Windows 3.x and 95/98/NT platforms.
Native ports to the Amiga, BeOS, Macintosh, OS/2, Psion, and Unix are also
underway.
Version 3.0 had no PNG support at all, while version 3.5 supported it only
through old-style Netscape plug-ins (i.e., with no transparency support).
Version 3.51, released in December 1998, includes native PNG support. Opera displays PNG images progressively
and does gamma correction, but like Navigator, it does not invoke its internal
image handlers for images in <b class="emphasis-bold">OBJECT</b> tags. Transparency, unfortunately, is
only partly supported. Truecolor and grayscale images with alpha channels
are rendered completely opaque; most palette images are rendered with binary
transparency, although at least one palette-based example exists in which the
image is rendered without any transparency.








</p><blockquote class="footnote">


<a name="FOOTNOTE-15" /><p>[15] BrowserWatch statistics, anyway
(<a href="http://browserwatch.internet.com/stats/stats.html">http://browserwatch.internet.com/stats/stats.html</a>/).</p>


</blockquote>


<p>Opera is available from the Opera Software home page,
<a href="http://www.operasoftware.com/">http://www.operasoftware.com/</a>. News on the non-Windows ports can be
found at <a href="http://www.operasoftware.com/alt_os.html">http://www.operasoftware.com/alt_os.html</a>.
<a name="INDEX-127" /></p>
</div>








<a name="png.ch02.div.1.4" /><div class="sect2">
<h3 class="sect2">2.1.4. Acorn Browse</h3>


<p><a name="INDEX-128" />
<a name="INDEX-129" />At the other end of the popularity spectrum--at least to judge by overall
statistics--lies a browser unique in its stellar support for PNG features:
Acorn Browse. Available only for Acorn computers running RISC OS, Browse
has always supported PNG and has offered full gamma and alpha-transparency
support since version 1.25.
Not only that, but (take a deep breath now) it actually supports full alpha
transparency while doing replicating (blocky) progressive display of interlaced
PNGs on top of arbitrary backgrounds. That's quite a mouthful, but in simple
terms it means that the browser can display, in a very elegant manner,
transparent, interlaced PNGs as they download. From a programmer's perspective
it's even more impressive: consider that an opaque pixel from an early
interlacing pass may get replicated and thereby hide background pixels that,
due to transparency, should be visible when the image is completely displayed.
So extra work is necessary to ensure that parts of the background covered up
by early interlacing passes are still available for compositing during later
passes. As of early 1999, there was no web browser in the world with better
PNG support than Browse. Unfortunately, most development on Browse itself
ended late in 1998, as a result of restructuring at Acorn; version 2.07 is
the latest and possibly the final release, although the web page
(<a href="http://www.acorn.com/browser">http://www.acorn.com/browser</a>) indicates that development ``will
continue...as a `spare time' activity.''</p>
</div>








<a name="png.ch02.div.1.5" /><div class="sect2">
<h3 class="sect2">2.1.5. Arena</h3>


<p><a name="INDEX-130" />Arena was the World Wide Web Consortium's early test bed for HTML 3.0
and Cascading Style Sheets (CSS1). It also became one of the first
browsers to support alpha transparency in PNG images (possibly the
very first), although this feat was somewhat diminished by the fact
that it didn't support background images at the time--except for its
own ``sandy'' background. Nevertheless, it was a useful browser for
testing PNG images under Unix.</p>


<p>Subsequent to the release of beta-3b in September 1996, Arena development
was taken over by Yggdrasil Computing, which managed roughly 60 beta releases
over the course of 16 months. The browser never achieved 1.0 status, however,
and development essentially ended in March 1998 (though a final 0.3.62 release
with minimal changes showed up in November 1998). Yggdrasil's Arena web page
is at <a href="http://www.yggdrasil.com/Products/Arena/">http://www.yggdrasil.com/Products/Arena/</a>, and old versions
<?x-need 10?>are still available from the W3C's page at <a href="http://www.w3.org/Arena/">http://www.w3.org/Arena/</a>.</p>
</div>








<a name="png.ch02.div.1.6" /><div class="sect2">
<h3 class="sect2">2.1.6. Amaya</h3>


<a name="INDEX-131" /><p>Amaya replaced Arena as the W3C's test-bed browser in 1996 and has always
included PNG support. Unlike Arena, it runs under not only various flavors
of Unix, but also Windows 95, 98, and NT. Although it supports transparency,
its implementation was still somewhat broken as of version 1.4; under Linux, it
appeared to support only binary transparency, and that only for palette-alpha
images (that is, images whose palette effectively consists of red, green, blue,
and alpha values). Amaya 1.4's support for gamma correction also
appeared to be incorrect but at least partially functional. On the positive
side--and not surprisingly--it handled <b class="emphasis-bold">OBJECT</b> image tags completely
correctly, including those with other <b class="emphasis-bold">OBJECT</b>s nested inside. Amaya is
freely available for download from <a href="http://www.w3.org/Amaya/">http://www.w3.org/Amaya/</a>.</p>
</div>








<a name="png.ch02.div.1.7" /><div class="sect2">
<h3 class="sect2">2.1.7. Other Browsers</h3>


<p>PNG support in other browsers varies considerably by platform. On the
Amiga, it is ubiquitous, thanks to a technological marvel known as
<em class="emphasis">datatypes</em> (a kind of super-DLL that, among other things,
provides generic image support); but under operating systems like BeOS
or Atari TOS, it is virtually nonexistent. The following sections list
many of the known PNG-supporting browsers, sorted by platform.
</p>


<a name="png.ch02.div.1.7.1" /><div class="sect3">
<h3 class="sect3">2.1.7.1. Amiga</h3>


<p><a name="INDEX-132" />
<a name="INDEX-133" />Two datatypes provide PNG support for virtually every Amiga browser in
existence: Cloanto's
(<a href="http://www.aminet.org/pub/aminet/util/dtype/PNG_dt.lha">http://www.aminet.org/pub/aminet/util/dtype/PNG_dt.lha</a>) and Andreas
Kleinert's (<a href="http://www.aminet.org/pub/aminet/util/dtype/akPNG-dt.lha">http://www.aminet.org/pub/aminet/util/dtype/akPNG-dt.lha</a>).
Cloanto made their first version of available within months of the PNG
specification freeze, thereby making the Amiga the very first platform to
support PNG in web browsers. Andreas's datatype at one time was considered
to have better overall PNG support, but the two datatypes appear to have
comparable features as of early 1999. Unfortunately, the datatype architecture
itself currently precludes alpha transparency and progressive display, but an
operating system upgrade due in the second quarter of 1999 is expected to
add at least alpha support.
</p>


<p>In the meantime, there are three Amiga browsers with native PNG
support in addition to basic datatype support: AWeb
(<a href="http://www.xs4all.nl/~yrozijn/aweb">http://www.xs4all.nl/~yrozijn/aweb</a>), iBrowse
(<a href="http://www.hisoft.co.uk/amiga/ibrowse">http://www.hisoft.co.uk/amiga/ibrowse</a>), and VoyagerNG
(<a href="http://www.vapor.com/voyager">http://www.vapor.com/voyager</a>). The first two claim to support
transparency, possibly including full alpha support. AWeb also does
gamma correction, and all three display PNGs progressively as they
download.</p>
</div>




<a name="png.ch02.div.1.7.2" /><div class="sect3">
<h3 class="sect3">2.1.7.2. Acorn</h3>


<p><a name="INDEX-134" />In addition to Browse, PNG is also supported on the Acorn platform by ANT
Fresco (<a href="http://www.ant.co.uk/prod/inetbroch/fresco2.html">http://www.ant.co.uk/prod/inetbroch/fresco2.html</a>/), ArcWeb
(<a href="http://www.dsse.ecs.soton.ac.uk/~snb94r/arcweb">http://www.dsse.ecs.soton.ac.uk/~snb94r/arcweb</a>), and DoggySoft's Termite
(<a href="http://www.doggysoft.co.uk/trweb.html">http://www.doggysoft.co.uk/trweb.html</a>/) and Webite
(<a href="http://www.doggysoft.co.uk/prog4.html#web">http://www.doggysoft.co.uk/prog4.html#web</a>/) browsers, although the
latter two do so via a third-party helper application called Progress from
David McCormack
(<a href="http://www.atlantic.oaktree.co.uk/software/termite/progress.html">http://www.atlantic.oaktree.co.uk/software/termite/progress.html</a>/).
Fresco is also notable as the browser chosen by Oracle for its network
computer.












</p>
</div>




<a name="png.ch02.div.1.7.3" /><div class="sect3">
<h3 class="sect3">2.1.7.3. BeOS</h3>


<p><a name="INDEX-135" />As of this writing, the best bet for a PNG-capable web browser running
under BeOS is a toss-up between the upcoming Opera port to BeOS, which
will presumably include Opera Software's recently added PNG support,
and the upcoming release of BeOS R4.5 and NetPositive 2.1
(<a href="http://www.be.com/beware/Network/NetPositive.html">http://www.be.com/beware/Network/NetPositive.html</a>/). The
latter is Be's bundled web browser, which in its beta version already
supports PNG--though not alpha transparency or gamma correction.
BeOS R4.5 will ship with a PNG ``Translator,'' which is the BeOS
version of the Amiga datatype concept.</p>
</div>




<a name="png.ch02.div.1.7.4" /><div class="sect3">
<h3 class="sect3">2.1.7.4. Macintosh</h3>


<p><a name="INDEX-136" />Surprisingly enough, given the Mac's popularity among graphic
designers, there are only four PNG-supporting browsers for the
platform, as of early 1999. That Netscape Navigator is one of them, and
that Internet Explorer is also available (though without PNG support
until version 5.0 is released) presumably has a great deal to do with
this lack of other PNG support. Aside from Navigator, the only known PNG-supporting Macintosh
browsers are iCab, Spyglass Mosaic, and versions 3.0A1 and later of
NCSA MacMosaic, and development on both of the Mosaics ceased in 1996.
iCab is a promising new browser for both Classic and Power
Macintoshes; as of this writing, it is still in beta (Preview 1.3a)
and has no gamma support or progressive display of interlacing, but it
is reported to support alpha transparency. It is available from
<a href="http://www.icab.de/">http://www.icab.de/</a>.</p>


<p>There are also two or three plug-ins for Mac versions of Netscape
prior to 4.04, depending on how one counts: the PNG Live 1.0 plug-in
for PowerMacs, Sam Bushell's (beta) plug-in, and Apple's QuickTime 3.0
plug-in. Since Sam Bushell was also responsible for PNG support in
QuickTime 3.0, it may be considered the successor to his own plug-in.</p>
</div>




<a name="png.ch02.div.1.7.5" /><div class="sect3">
<h3 class="sect3">2.1.7.5. NeXTStep/OpenStep</h3>


<p><a name="INDEX-137" />
<a name="INDEX-138" />
<a name="INDEX-139" />Only one currently available browser for NeXTStep and OpenStep supports PNG
natively: OmniWeb, versions 2.0 and later, available from
<a href="http://www.omnigroup.com/Software/OmniWeb/">http://www.omnigroup.com/Software/OmniWeb/</a>. OmniWeb displays interlaced images
progressively and does full gamma correction, but version 2.0 has no support
for alpha transparency. (Version 3.0 is still in beta as of February 1999;
its release notes do not mention PNG or alpha transparency.) Another NeXT
<a name="INDEX-140" />browser, NetSurfer 1.1, once supported PNG, but it is no longer available.






</p>
</div>




<a name="png.ch02.div.1.7.6" /><div class="sect3">
<h3 class="sect3">2.1.7.6. OS/2</h3>


<p><a name="INDEX-141" />Until mid-1998, the options for native OS/2 PNG-supporting browsers were almost
nonexistent: they included a widely distributed plug-in from Giorgio Costa
and a beta plug-in from Panacea Software that was available for only two weeks.
These could be used with IBM's OS/2 port of Netscape Navigator 2.02. (IBM's
own WebExplorer browser never supported PNG in any way.) But September 1998
saw the public release of IBM's Navigator 4.04 port
(<a href="http://www.software.ibm.com/os/warp/netscape">http://www.software.ibm.com/os/warp/netscape</a>), which includes native
PNG support.
























</p>
</div>
</div>








<a name="png.ch02.div.1.8" /><div class="sect2">
<h3 class="sect2">2.1.8. Client-Side Workarounds: The OBJECT Tag</h3>


<p><a name="INDEX-142" />
<a name="INDEX-143" />Suppose that we would like to use PNGs wherever possible but still allow
older browsers to see JPEGs or GIFs. Is there a way to do this? The answer is either
``sort of'' or ``yes,'' depending on the approach one takes. In <a href="chapter01.html">Chapter 1, "An Introduction to PNG"</a>,
<em class="emphasis">An Introduction to PNG</em>,
I mentioned a client-side approach involving the HTML 4.0 <b class="emphasis-bold">OBJECT</b>
tag, but I also noted that neither of the Big Two yet handles such things
correctly, and earlier in this chapter I enumerated some of the specific
problems in the two browsers. The other approach is a server-side method
involving content negotiation. We'll come back to that one later.</p>


<p>First, let us take a closer look at the client-side method. HTML 4.0's
<b class="emphasis-bold">OBJECT</b> tag was designed to be a generalized replacement for the
HTML 3.2 <b class="emphasis-bold">IMG</b> and <b class="emphasis-bold">APPLET</b> tags and for Netscape's <b class="emphasis-bold">EMBED</b>
tag. Since <b class="emphasis-bold">OBJECT</b> is a container, it can contain other elements inside
it, including nested <b class="emphasis-bold">OBJECT</b>s. The rules for rendering them are simple: start with the outermost <b class="emphasis-bold">OBJECT</b>; if you can render that, do so, and
ignore what's inside. Otherwise, continue peeling back the outer layers until
you find something that <em class="emphasis">can</em> be rendered.</p>


<p>In the case of images, the following two elements are equivalent:
<a name="INDEX-144" /></p>


<blockquote><pre class="code">&lt;IMG SRC="foo.png"
 ALT="[This text is visible if the image is not rendered.]"&gt;
<?x-need 10?>&lt;OBJECT TYPE="image/png" DATA="foo.png"&gt;
   [This text is visible if the image is not rendered.]
&lt;/OBJECT&gt;</pre></blockquote>


<p><a name="INDEX-145" />Because <b class="emphasis-bold">OBJECT</b>s can be used for many things, the <b class="emphasis-bold">image/png</b>
MIME type in this example is strongly recommended so that the browser can
unambiguously identify the data as an image (rather than, say, a Java applet)
and, if it knows it has no support for the type, avoid contacting the server


unnecessarily. For JPEGs or GIFs, the MIME type would be <b class="emphasis-bold">image/jpeg</b>
<a name="INDEX-146" />
<a name="INDEX-147" />
<a name="INDEX-148" />
<a name="INDEX-149" />or <b class="emphasis-bold">image/gif</b>, respectively. Both <b class="emphasis-bold">IMG</b> and <b class="emphasis-bold">OBJECT</b> tags
may include optional <b class="emphasis-bold">HEIGHT</b> and <b class="emphasis-bold">WIDTH</b> attributes, but as we
noted earlier, Netscape requires them in order to invoke an image-handling
plug-in for an <b class="emphasis-bold">OBJECT</b> tag.<a href="#FOOTNOTE-16">[16]</a>
</p><blockquote class="footnote">


<a name="FOOTNOTE-16" /><p>[16] If Netscape ever modifies their plug-in code to work with <b class="emphasis-bold">IMG</b> tags,
presumably the <b class="emphasis-bold">HEIGHT</b> and <b class="emphasis-bold">WIDTH</b> attributes will be required
there, as well. Fortunately, this is not a very onerous requirement
for content producers.</p>


</blockquote>


<p>The trick that should allow both <b class="emphasis-bold">OBJECT</b>-recognizing browsers and
pre-<b class="emphasis-bold">OBJECT</b> browsers to render something sensible is to wrap a GIF or
JPEG version of an image, referenced via an old-style <b class="emphasis-bold">IMG</b> tag, inside
a new-style <b class="emphasis-bold">OBJECT</b> tag that references a PNG version of the same image.
In other words, one does something like the following:</p>


<blockquote><pre class="code">&lt;OBJECT WIDTH="160" HEIGHT="160" DATA="foo.png" TYPE="image/png"&gt;
   &lt;IMG WIDTH="160" HEIGHT="160"  SRC="foo.jpg"
    ALT="[rare photo of the incredible foo]"&gt;
&lt;/OBJECT&gt;</pre></blockquote>


<p>If we decide to accommodate only browsers that support either <b class="emphasis-bold">OBJECT</b>
or PNG (or both) but don't care about older browsers that support neither, we
can get a little fancier with nested <b class="emphasis-bold">OBJECT</b>s:</p>


<blockquote><pre class="code">&lt;OBJECT WIDTH="160" HEIGHT="160" DATA="foo.png" TYPE="image/png"&gt;
&lt;OBJECT WIDTH="160" HEIGHT="160" DATA="foo.jpg" TYPE="image/jpeg"&gt;
   &lt;IMG WIDTH="160" HEIGHT="160"  SRC="foo.png"
    ALT="[rare photo of the incredible foo]"&gt;
&lt;/OBJECT&gt;
&lt;/OBJECT&gt;</pre></blockquote>


<p>A browser that implements both PNG and HTML 4.0 will render the outer
<b class="emphasis-bold">OBJECT</b> PNG; one that implements HTML 4.0 but not PNG will render the
inner <b class="emphasis-bold">OBJECT</b> JPEG; and one that implements PNG but not HTML 4.0 will
render the innermost <b class="emphasis-bold">IMG</b> PNG. (And, of course, a browser with no image
support will render the text in the <b class="emphasis-bold">IMG</b> tag's <b class="emphasis-bold">ALT</b> attribute.)</p>


<p>The reason these tricks don't work in practice is that some
browsers--particularly Netscape Navigator and Microsoft Internet Explorer,
but undoubtedly others as well--added incomplete or incorrect support for
<b class="emphasis-bold">OBJECT</b> before the HTML 4.0 specification was formally approved in
December 1997. As I've already noted, no released version of either of the
Big Two browsers would invoke its native image-handling code when it
encountered an <b class="emphasis-bold">OBJECT</b> image, even as late as February 1999. Navigator
always renders the inner <b class="emphasis-bold">IMG</b> unless a plug-in is available; MSIE either
pops up an error box claiming to need an ActiveX control or, in our
tests, manages to crash while invoking a Netscape PNG plug-in installed
elsewhere on the system. (I've also noted that Internet Explorer attempts to
render all <b class="emphasis-bold">OBJECT</b>s in a nested set, not just the outermost one.)
Older versions of both browsers, and, likewise, all versions of Opera to date,
behave as expected and simply ignore <b class="emphasis-bold">OBJECT</b> images.


<a name="INDEX-150" />
<a name="INDEX-151" />
<a name="INDEX-152" />
<a name="INDEX-153" />
<a name="INDEX-154" />
<a name="INDEX-155" />
</p>
</div>
</div>

















</div>
<div class="sect1"><a name="png.ch02.div.2" />
<h2 class="sect1">2.2. WWW Servers</h2>


<p><a name="INDEX-156" />
<a name="INDEX-157" />
<a name="INDEX-158" />
<a name="INDEX-159" />On the server side of things, PNG support is much less of an issue. With
one notable exception, server-side support involves, at most, adding a
single line to a text configuration file and restarting the server to have
it take effect. Smoothly upgrading web pages to use PNG images if
possible--i.e., enabling content negotiation--requires additional
effort, however.</p>


<a name="png.ch02.div.2.1" /><div class="sect2">
<h3 class="sect2">2.2.1. ``Standard'' Servers</h3>









<p><a name="INDEX-160" />The first requirement for a web server to support PNG properly is to
enable the correct MIME type, <b class="emphasis-bold">image/png</b>. On most servers, including
CERN/W3C (<a href="http://www.w3.org/Daemon/Status.html">http://www.w3.org/Daemon/Status.html</a>/), NCSA
(<a href="http://hoohoo.ncsa.uiuc.edu">http://hoohoo.ncsa.uiuc.edu</a>), Apache (<a href="http://www.apache.org">http://www.apache.org</a>),
Zeus (<a href="http://www.zeus.co.uk/products">http://www.zeus.co.uk/products</a>) and various flavors of Netscape
servers (<a href="http://home.netscape.com/servers">http://home.netscape.com/servers</a>), this can be accomplished
most easily by editing the <em class="emphasis">mime.types</em> file to include one of the
following two lines:
</p>


<blockquote><pre class="code">image/png png</pre></blockquote>


<p>or:</p>


<blockquote><pre class="code">type=image/png exts=png</pre></blockquote>


<p>The latter format is used by Netscape servers, but for any server, the correct
format should be obvious from the other entries in the file (search for the <b class="emphasis-bold">image/gif</b> or <b class="emphasis-bold">image/jpeg</b> lines and use one of
them as a template). Apache can also be configured via its <em class="emphasis">srm.conf</em>
file (or, if <b class="emphasis-bold">AllowOverride FileInfo</b> has been specified,
in <em class="emphasis">.htaccess</em> files in individual directories) with the following line:</p>


<blockquote><pre class="code">AddType image/png png</pre></blockquote>


<p><a name="INDEX-161" />Note that the original PNG media type, <b class="emphasis-bold">image/x-png</b>, has been obsolete
since <b class="emphasis-bold">image/png</b> was officially registered in October 1996. If the
older type is present in either configuration file, change it to
<b class="emphasis-bold">image/png</b> or delete it altogether.</p>


<p>Once a change to the configuration files has been made, the server will need
to be signaled to reread them. For some Unix servers, this can be done via
the <b class="emphasis-bold">kill -HUP</b> command, but restarting the server is a more portable
method. Check the server's documentation for the recommended approach.












</p>
</div>








<a name="png.ch02.div.2.2" /><div class="sect2">
<h3 class="sect2">2.2.2. Internet Information Server</h3>



<p><a name="INDEX-162" />
<a name="INDEX-163" />
<a name="INDEX-164" />Microsoft's Internet Information Server (IIS) marches to its own
drummer. Available as part of Windows NT Server
(<a href="http://www.microsoft.com/ntserver/web">http://www.microsoft.com/ntserver/web</a>), IIS uses the Windows
registry in lieu of the traditional text-based configuration file for
media (MIME) types. This part of the registry can be modified via
Explorer to add the <b class="emphasis-bold">image/png</b> type as follows; type the text
printed in <em class="emphasis">italic</em>:
<?x-space -1p?></p>


<ol><li><p>Open <b class="emphasis-bold">Windows Explorer</b> (<b class="emphasis-bold">Start</b> button &#8594; <b class="emphasis-bold">Programs</b> &#8594;
<b class="emphasis-bold">Windows Explorer</b>).</p></li><li><p>Select <b class="emphasis-bold">View</b> &#8594; <b class="emphasis-bold">Options</b>.</p></li><li><p>Click on the <b class="emphasis-bold">File Types</b> tab.</p></li><li><p>Click on the <b class="emphasis-bold">New Type...</b> button.</p></li><li><p>Enter the following information:
<?x-space -3p?></p>


<ul>
<?x-space -3p?><li><p><b class="emphasis-bold">Description of type:</b> <em class="emphasis">Portable Network Graphics image</em>
<?x-space -3p?></p></li><li><p><b class="emphasis-bold">Associated extension:</b> <em class="emphasis">.png</em>
<?x-space -3p?></p></li><li><p><b class="emphasis-bold">Content Type (MIME):</b> <em class="emphasis">image/png</em></p></li></ul></li><li><p>Click on the <b class="emphasis-bold">New...</b> button.</p></li><li><p>Enter the following information:
<?x-space -3p?></p>


<ul>
<?x-space -3p?><li><p><b class="emphasis-bold">Action:</b> Open.
<?x-space -3p?></p></li><li><p><b class="emphasis-bold">Application used to perform action:</b> <em class="emphasis">your full path to an image
viewer</em>.
<?x-space -3p?></p></li><li><p>Uncheck <b class="emphasis-bold">Confirm open after download</b> box.</p></li></ul></li><li><p>Click on the <b class="emphasis-bold">OK</b> button.</p></li><li><p>Click on the <b class="emphasis-bold">Close</b> button.</p></li><li><p>Click on the <b class="emphasis-bold">Close</b> button.</p></li></ol>

<p>Since this setup takes place on the server itself, the application associated
with the media type is not particularly important; it merely enables someone
sitting at the server console to double-click on a PNG image to view it. The
app can be any PNG-aware image viewer, including Netscape Navigator, but (as
I noted before) not Microsoft's own Internet Explorer 4.0.</p>


<p>Setting up the media type is all that is required for basic,
standards-compliant operation, but due to a bug that appears to exist in all
PNG-supporting versions of Netscape's browser prior to 4.51 (and also due to particularly strict
syntax checking on the part of Microsoft's server), IIS by default will refuse
to serve PNG images to versions of Navigator up through 4.5. Instead, it
returns an error (``HTTP/1.1 406 No acceptable objects were found,'' similar
to the ``404 Not found'' error that is familiar to many web surfers), which
Navigator renders as its broken-image icon. The cause is apparently a broken
header that Netscape clients send as part of their HTTP content negotiation
with the server:</p>


<blockquote><pre class="code">Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg image/png</pre></blockquote>


<p>Note the missing comma after <b class="emphasis-bold">image/pjpeg</b>. Because of this error,
IIS does not recognize that <b class="emphasis-bold">image/png</b> is an acceptable media type,
and it therefore returns an error message instead of the image.</p>


<p>Reportedly, there is some form of workaround that involves tweaking the
IIS-related parts of the Windows registry on the server, but as of early
1999, no one has yet come forth with the magic information.


Semi-informed guesses include the possibilities of relaxing the strict HTTP
syntax checking or of turning off content negotiation altogether, but it
is not known whether either of these options actually exists in the server.<a href="#FOOTNOTE-17">[17]</a>






























































































































<a name="INDEX-165" />
<a name="INDEX-166" />
<a name="INDEX-167" />
</p><blockquote class="footnote">


<a name="FOOTNOTE-17" /><p>[17] Another possibility (albeit a <em class="emphasis">truly</em> ugly and brutal one) is to forego
the setup of the <b class="emphasis-bold">image/png</b> media type that was described before--or,
if the type already exists, eliminate it. Instead, register the .png
file extension as belonging to another image type, such as <b class="emphasis-bold">image/gif</b> or
<b class="emphasis-bold">image/jpeg</b>. But not only is this likely to break other browsers,
it may not even fix the problem with Navigator; I mention it only as a last
resort for desperate site administrators.</p>


</blockquote>
</div>








<a name="png.ch02.div.2.3" /><div class="sect2">
<h3 class="sect2">2.2.3. Server-Side Workarounds: Content Negotiation</h3>


<p><a name="INDEX-168" />
<a name="INDEX-169" />Serving PNG images with the correct MIME type is one thing, but there
remains the issue of <em class="emphasis">when</em> to serve PNG images. As
discussed earlier, the client-side method involving <b class="emphasis-bold">OBJECT</b>
tags really doesn't work very well. The only option that works is
content negotiation, and, unfortunately, this only works for those who
have control of the web server itself. Content negotiation is also
dependent on the web server software being used. But it's conceptually
a clean solution, and it has been proven in the field: the World Wide
Web Consortium has successfully implemented it at
<a href="http://www.w3.org">http://www.w3.org</a> since 1996.  We'll take a look at how to
enable and use content negotiation on the most popular web server in
the world: Apache.<a href="#FOOTNOTE-18">[18]</a>
</p><blockquote class="footnote">


<a name="FOOTNOTE-18" /><p>[18] The Zeus server is almost identical in configuration. See
<a href="http://www.zeus.co.uk/products/zeus1/docs/guide/features/content.html">http://www.zeus.co.uk/products/zeus1/docs/guide/features/content.html</a> for
details.
<a name="INDEX-170" /></p>


</blockquote>


<a name="png.ch02.div.2.3.1" /><div class="sect3">
<h3 class="sect3">2.2.3.1. Apache variants files</h3>


<p><a name="INDEX-171" />Apache actually supports two methods of content negotiation. The first
involves ``variants'' files and is implemented in Apache's
<a name="INDEX-172" /><b class="emphasis-bold">mod_negotiation</b> module. To enable the module, the following line must
be added to the <em class="emphasis">httpd.conf</em> configuration file:</p>


<blockquote><pre class="code">AddHandler type-map var</pre></blockquote>





<p>The server must be restarted for this line to take effect. Then, for each
image that is to be negotiated, create a <b class="emphasis-bold">.var</b> file corresponding
to the filename and refer to that in the HTML file. For example, to serve
either <em class="emphasis">tux.gif</em> or <em class="emphasis">tux.png</em>, depending on each browser's
capabilities, create a file called <em class="emphasis">tux.var</em> in the same directory
and refer to it in the <b class="emphasis-bold">IMG</b> tag in place of the actual image filename:
<a name="INDEX-173" /></p>


<blockquote><pre class="code">&lt;IMG SRC="images/tux.var" ALT="[His Penguinness, Tux]"&gt;</pre></blockquote>


<p>The contents of <em class="emphasis">tux.var</em> should look something like this:</p>


<blockquote><pre class="code">URI: tux.png
Content-Type: image/png;qs=0.7
  
URI: tux.gif
Content-Type: image/gif;qs=0.4</pre></blockquote>



<p>Each variant has a corresponding block of information, separated from
that of the other variants by blank lines. The actual image filenames
are given on the <b class="emphasis-bold">URI</b> lines, and their corresponding MIME types
are given on the subsequent <b class="emphasis-bold">Content-Type</b> lines. In addition,
a <em class="emphasis">quality of source</em> parameter <b class="emphasis-bold">qs</b> is included for each
image type. This is a number between 0.0 and 1.0 that indicates the
relative preferences of the author for each image type. In this
example, I've indicated that the PNG image (0.7) is preferred over the
GIF (0.4). The default value of the <b class="emphasis-bold">qs</b> parameter is 1.0.</p>


<p>A client browser requesting an image from the server also indicates its
relative preferences, either explicitly or implicitly, via the HTTP Accept
header. The web server then multiplies its quality parameter for each MIME
type by the client's quality parameter<a href="#FOOTNOTE-19">[19]</a>
to get a composite value--this is the resolution phase of the
negotiation. The highest composite value determines which image is
sent.






</p><blockquote class="footnote">


<a name="FOOTNOTE-19" /><p>[19] Multiplication is specified in the HTTP 1.1 spec; HTTP 1.0 said only
to ``combine'' the values.</p>


</blockquote>


<p>In practice, things are a bit more complicated for the server, but this
is usually hidden from the user. The problem arises when the client browser
sends incomplete or even incorrect information. For example, some browsers
send <b class="emphasis-bold">Accept: image/*</b> , indicating that they can render any
type of image. Others specify a list of image types but also include the
catchall type <b class="emphasis-bold">*/*</b>. And only rarely does a client include preference
values for each type. As a result, the server must assume preference values
for the client. By default, all types are given a value of 1.0, but Apache
``fiddles'' the values for wildcard types: <b class="emphasis-bold">image/*</b> or <b class="emphasis-bold">text/*</b>
are assigned the value 0.02 instead, and <b class="emphasis-bold">*/*</b> is assigned the value
0.01.
</p>


<p>The variants file approach allows fine-grained control over every
image in a web site, and has the distinct advantage that a site
designer can use it at will, if the server administrator has
enabled content negotiation. But maintaining
parallel sets of images can be enough trouble all by itself;
having to maintain a unique variants file for every image is enough to
drive most site maintainers to distraction.  Fortunately, Apache
provides a partial alternative: <em class="emphasis">MultiViews</em>, a directory-wide
(and potentially server-wide) method based on file extensions.</p>
</div>




<a name="png.ch02.div.2.3.2" /><div class="sect3">
<h3 class="sect3">2.2.3.2. Apache MultiViews</h3>


<p><a name="INDEX-174" />
<a name="INDEX-175" />Enabling MultiViews in Apache is accomplished by including it on an Options
line in the <em class="emphasis">httpd.conf</em> configuration file:</p>


<blockquote><pre class="code">Options +MultiViews</pre></blockquote>


<p>The option may appear inside a <b class="emphasis-bold">&lt;Directory&gt;</b> container, in which case
it applies only to the named directory tree rather than the entire server;
inside a <b class="emphasis-bold">&lt;VirtualHost&gt;</b> container, in which case it applies only to a given
virtual hostname; or, if <b class="emphasis-bold">AllowOverride Options</b> has been specified,
within <em class="emphasis">.htaccess</em> files in individual directories. As with variants,
the server must be restarted before changes to the main configuration file
are noticed.
</p>


<p>Once MultiViews is enabled for a given directory--say,
<em class="emphasis">/www/htdocs/images</em>--a request for a file <em class="emphasis">foo</em> in that
directory will either return <em class="emphasis">foo</em> if it exists or else negotiate between
all <em class="emphasis">foo.*</em> files.  So to serve either <em class="emphasis">tux.png</em> or
<em class="emphasis">tux.gif</em>, for example, simply include both in the directory and refer
to them as follows:</p>


<blockquote><pre class="code">&lt;IMG SRC="images/tux" ALT="[His Penguinness, Tux]"&gt;</pre></blockquote>


<p>Unfortunately, MultiViews has one great weakness: no version of Apache
through 1.3.3 supports <em class="emphasis">multifile</em> quality-of-source settings.<a href="#FOOTNOTE-20">[20]</a>


<a name="INDEX-176" />
In particular, there is no way to add a line or two to one of the
top-level configuration files to indicate that all PNGs on the site,
or all in a particular directory tree, should have a source quality
of, say, 0.7. Individual variants files are still allowed, and if
found, their settings will override the Apache defaults. But the
requirement to generate one variants file for every image is just as
painful with MultiViews as with the standard variants file
approach. The only alternative for now is to hack the source, which is
precisely what was done at
<a href="http://www.w3.org/">http://www.w3.org/</a>, the home of the
W3C. The W3C programmers are working to get their patches cleaned up
and incorporated into the stock Apache source tree, but there is no
word on when that will occur, and in the meantime, the Apache
developers ``have no firm plans to add such functionality.''  As with
many such things, multiple user requests for the feature would
probably make a difference in the development plans.


















































<!-- MOVED UP    a name="INDEX-176" / -->
<a name="INDEX-177" />
<a name="INDEX-178" />
<a name="INDEX-179" />
<a name="INDEX-180" />
<a name="INDEX-181" />
<a name="INDEX-182" />
</p><blockquote class="footnote">


<a name="FOOTNOTE-20" /><p>[20] Version 1.3.4 was released a few weeks before this book's deadline;
the ``New Features in Apache 1.3'' page
(<a href="http://www.apache.org/docs/new_features_1_3.html">http://www.apache.org/docs/new_features_1_3.html</a>) hinted at
changes relevant to a global quality-of-source feature, but I did not
have time to investigate fully. Specifically, the three server
configuration files were merged (<em class="emphasis">srm.conf</em> and <em class="emphasis">access.conf</em>
were absorbed into <em class="emphasis">httpd.conf</em>/), and the
<b class="emphasis-bold">mod_negotiation</b> module was ``completely overhauled.''  A
comment in the <b class="emphasis-bold">mod_negotiation</b> source code, however, indicates
that the global setting still has not been implemented.</p>


</blockquote>
</div>
</div>

</div>


<hr> <!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->

<a href="chapter01.html"><img width=24 height=13 border=0 align="left"
 src="images/prev.png" alt="&lt;-"></a>

<a href="chapter03.html"><img width=24 height=13 border=0 align="right"
 src="images/next.png" alt="-&gt;"></a>

<div align="center">
  <a href="chapter01.html"><font size="-1" color="#000000"
   ><b>PREVIOUS</b></font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
     href="toc.html"><font size="-1" color="#000000"
   ><b>CONTENTS</b></font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a
     href="chapter03.html"><font size="-1" color="#000000"
   ><b>NEXT</b></font></a>
</div>

<hr> <!-- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->


</body></html>