File: table3.html

package info (click to toggle)
xmhtml 1.1.10-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,296 kB
  • sloc: ansic: 70,372; makefile: 480; sh: 176; perl: 36
file content (57 lines) | stat: -rw-r--r-- 1,706 bytes parent folder | download | duplicates (10)
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
<html>
<body>

	<table width="100%" border=5 cellspacing=5>
	<tr valign="top" bgcolor="yellow">
		<td>XmQUICK
		<td bgcolor="green">A closest distance algorithm is used to map image colors to the
			palette. No	error correction is performed. Fast, but the resulting
			image quality depends on the distribution of the colors in the
			image.
	<tr valign="top">
		<td>XmBEST
		<td>Ordered dither using predefined error matrices. Offers the best
			balance between speed and quality but uses a lot of memory (512kb).
	<tr valign="top" bgcolor="slateblue">
		<td bgcolor="white">XmFAST
		<td>Simple ordered dither without error correction. This is the
			fastest method but uses a lot of memory (512kb).

			<!-- This nested table shows a bug in Netscape table handling:
				 if the closing </td> is removed, all cells are packed into
				 a *single* cell! -->
			<table width="100%" bgcolor="gold" border=1 align="right">
			<tr>
				<td>XmNO_LINE</td>
				<td>/* no underlines */</td>
			</tr>
			<tr>
				<td>XmSINGLE_LINE</td>
				<td>/* a single, solid, underline */</td>
			</tr>
			<tr>
				<td>XmDOUBLE_LINE</td>
				<td>/* a double, solid, underline */</td>
			</tr>
			<tr>
				<td>XmSINGLE_DASHED_LINE</td>
				<td>/* a single, dashed, underline */</td>
			</tr>
			<tr>
				<td>XmDOUBLE_DASHED_LINE</td>
				<td>/* a double, dashed, underline */</td>
			</tr>
			</table>
	</tr>

	<tr valign="top" background="../../Images/wood/bullet.gif">
		<td>XmSLOW
		<td>A closest distance algorithm followed by Floyd-Steinberg error
			diffusion. Slowest method but highest quality.
	<tr valign="top">
		<td>XmDISABLED
		<td>disables palette mapping. This is the default setting.
	</table>

</body>
</html>