Revised.
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
diff --git a/docs/glyphs/glyphs-4.html b/docs/glyphs/glyphs-4.html
index 4f07878..0bcc02c 100644
--- a/docs/glyphs/glyphs-4.html
+++ b/docs/glyphs/glyphs-4.html
@@ -1,12 +1,13 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <meta name="Author" content="blob">
- <meta name="GENERATOR" content="Mozilla/4.5 [fr] (Win98; I) [Netscape]">
- <title>FreeType Glyph Conventions</title>
+ <meta http-equiv="Content-Type"
+ content="text/html; charset=iso-8859-1">
+ <meta name="Author"
+ content="David Turner">
+ <title>FreeType Glyph Conventions</title>
</head>
-<body>
<body text="#000000"
bgcolor="#FFFFFF"
@@ -14,165 +15,217 @@
vlink="#51188E"
alink="#FF0000">
-<center>
-<h1>
-FreeType Glyph Conventions</h1></center>
-
-<center>
-<h2>
-version 2.1</h2></center>
+<h1 align=center>
+ FreeType Glyph Conventions
+</h1>
-<center>
-<h3>
-Copyright 1998-2000 David Turner (<a href="mailto:david@freetype.org">david@freetype.org</a>)<br>
-Copyright 2000 The FreeType Development Team (<a href="devel@freetype.org">devel@freetype.org</a>)</h3></center>
-
-<center><table width=650><tr><td>
-
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="glyphs-3.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="glyphs-5.html">Next</a>
-</td>
-</tr></table></center>
-
-<table width="100%" cellpadding=5><tr bgcolor="#CCCCFF" valign=center><td>
-<h2>
-IV. Kerning
+<h2 align=center>
+ Version 2.1
</h2>
-</td></tr></table>
-
-<p>The term 'kerning' refers to specific information used to adjust
-the relative positions of coincident glyphs in a string of text. This section
-describes several types of kerning information, as well as the way to process
-them when performing text layout.
-</p>
-
-<h3><a name="section-1">
-1. Kerning pairs
-</h3><blockquote>
-
-<p>Kerning consists in modifying the spacing between two successive
-glyphs according to their outlines. For example, a "T" and a "y" can be
-easily moved closer, as the top of the "y" fits nicely under the "T"'s
-upper right bar.
-</p>
-
-<p>When laying out text with only their standard widths, some consecutive
-glyphs sometimes seem a bit too close or too distant. For example, the
-space between the 'A' and the 'V' in the following word seems a little
-wider than needed.
-<center>
-<p><img SRC="bravo_unkerned.png" height=37 width=116></center>
-<p>Compare this to the same word, when the distance between these two letters
-has been slightly reduced :
-<center>
-<p><img SRC="bravo_kerned.png" height=37 width=107></center>
-
-<p>As you can see, this adjustment can make a great difference. Some font
-faces thus include a table containing kerning distances for a set of given
-glyph pairs, used during text layout. Note that :
-<br>
-<blockquote>
-<ul>
-<li>
-The pairs are ordered, i.e. the space for pair (A,V) isn't necessarily
-the space for pair (V,A). They also index glyphs, and not characters.</li>
-</ul>
-
-<ul>
-<li>
-Kerning distances can be expressed in horizontal or vertical directions,
-depending on layout and/or script. For example, some horizontal layouts
-like arabic can make use of vertical kerning adjustments between successive
-glyphs. A vertical script can have vertical kerning distances.</li>
-</ul>
-
-<ul>
-<li>
-Kerning distances are expressed in grid units. They are usually oriented
-in the X axis, which means that a negative value indicates that two glyphs
-must be set closer in a horizontal layout.</li>
-</ul>
-</blockquote>
-</blockquote>
-
-<h3><a name="section-2">
-2. Applying kerning</h3>
-
-<blockquote>Applying kerning when rendering text is a rather easy process.
-It merely consists in adding the scaled kern distance to the pen position
-before writing each next glyph. However, the typographically correct renderer
-must take a few more details in consideration.
-<p>The "sliding dot" problem is a good example : many font faces include
-a kerning distance between capital letters like "T" or "F" and a following
-dot ("."), in order to slide the latter glyph just right to their main
-leg. I.e.
-<center>
-<p><img SRC="twlewis1.png" height=38 width=314></center>
+<h3 align=center>
+ Copyright 1998-2000 David Turner (<a
+ href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+ Copyright 2000 The FreeType Development Team (<a
+ href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
-<p>However, this sometimes requires additional adjustments between the
-dot and the letter following it, depending on the shapes of the enclosing
-letters. When applying "standard" kerning adjustments, the previous sentence
-would become :
<center>
-<p><img SRC="twlewis2.png" height=36 width=115></center>
-
-<p>Which clearly is too contracted. The solution here, as exhibited in
-the first example is to only slide the dots when possible. Of course, this
-requires a certain knowledge of the text's meaning. The above adjustments
-would not necessarily be welcomed if we were rendering the final dot of
-a given paragraph.
-<p>This is only one example, and there are many others showing that a real
-typographer is needed to layout text properly. If not available, some kind
-of user interaction or tagging of the text could be used to specify some
-adjustments, but in all cases, this requires some support in applications
-and text libraries.
-<p>For more mundane and common uses, however, we can have a very simple
-algorithm, which avoids the sliding dot problem, and others, though
-not producing optimal results. It can be seen as :
-<br>
-<blockquote>
-<ol>
-<li>
-place the first glyph on the baseline</li>
-
-<li>
-save the location of the pen position/origin in pen1</li>
-
-<li>
-adjust the pen position with the kerning distance between the first and
-second glyph</li>
-
-<li>
-place the second glyph and compute the next pen position/origin in pen2.</li>
-
-<li>
-use pen1 as the next pen position if it is beyond pen2, use pen2 otherwise.</li>
-</ol>
-</blockquote>
-</blockquote>
-</blockquote>
-
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="glyphs-3.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="glyphs-5.html">Next</a>
-</td>
-</tr></table></center>
-
-</td></tr></table></center>
+<table width="65%">
+<tr><td>
+
+ <center>
+ <table width="100%"
+ border=0
+ cellpadding=5>
+ <tr bgcolor="#CCFFCC"
+ valign=center>
+ <td align=center
+ width="30%">
+ <a href="glyphs-3.html">Previous</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="index.html">Contents</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="glyphs-4.html">Next</a>
+ </td>
+ </tr>
+ </table>
+ </center>
+
+ <p><hr></p>
+
+ <table width="100%">
+ <tr bgcolor="#CCCCFF"
+ valign=center><td>
+ <h2>
+ IV. Kerning
+ </h2>
+ </td></tr>
+ </table>
+
+ <p>The term <em>kerning</em> refers to specific information used to
+ adjust the relative positions of coincident glyphs in a string of text.
+ This section describes several types of kerning information, as well as
+ the way to process them when performing text layout.</p>
+
+
+ <a name="section-1">
+ <h3>
+ 1. Kerning pairs
+ </h3>
+
+ <p>Kerning consists in modifying the spacing between two successive
+ glyphs according to their outlines. For example, a "T" and a "y" can be
+ easily moved closer, as the top of the "y" fits nicely under the upper
+ right bar of the "T".</p>
+
+ <p>When laying out text with only their standard widths, some
+ consecutive glyphs seem a bit too close or too distant. For example,
+ the space between the "A" and the "V" in the following word seems a
+ little wider than needed.</p>
+
+ <center><p>
+ <img src="bravo_unkerned.png"
+ height=37 width=116
+ alt="the word 'bravo' unkerned">
+ </p></center>
+
+ <p>Compare this to the same word, where the distance between these two
+ letters has been slightly reduced:</p>
+
+ <center><p>
+ <img src="bravo_kerned.png"
+ height=37 width=107
+ alt="the word 'bravo' with kerning">
+ </p></center>
+
+ <p>As you can see, this adjustment can make a great difference. Some
+ font faces thus include a table containing kerning distances for a set
+ of given glyph pairs for text layout.</p>
+
+ <ul>
+ <li>
+ <p>The pairs are ordered, i.e., the space for pair (A,V) isn't
+ necessarily the space for pair (V,A). They also index glyphs, and
+ not characters.</p>
+ </li>
+ <li>
+ <p>Kerning distances can be expressed in horizontal or vertical
+ directions, depending on layout and/or script. For example, some
+ horizontal layouts like Arabic can make use of vertical kerning
+ adjustments between successive glyphs. A vertical script can have
+ vertical kerning distances.</p>
+ </li>
+ <li>
+ <p>Kerning distances are expressed in grid units. They are usually
+ oriented in the <i>X</i> axis, which means that a negative
+ value indicates that two glyphs must be set closer in a horizontal
+ layout.</p>
+ </li>
+ </ul>
+
+
+ <a name="section-2">
+ <h3>
+ 2. Applying kerning
+ </h3>
+
+ <p>Applying kerning when rendering text is a rather easy process. It
+ merely consists in adding the scaled kern distance to the pen position
+ before writing each next glyph. However, the typographically correct
+ renderer must take a few more details in consideration.</p>
+
+ <p>The "sliding dot" problem is a good example: Many font faces include
+ a kerning distance between capital letters like "T" or "F" and a
+ following dot ("."), in order to slide the latter glyph just right to
+ their main leg:</p>
+
+ <center><p>
+ <img src="twlewis1.png"
+ height=38 width=314
+ alt="example for sliding dots">
+ </p></center>
+
+ <p>This sometimes requires additional adjustments between the dot and
+ the letter following it, depending on the shapes of the enclosing
+ letters. When applying "standard" kerning adjustments, the previous
+ sentence would become:</p>
+
+ <center><p>
+ <img src="twlewis2.png"
+ height=36 width=115
+ alt="example for too much kerning">
+ </p></center>
+
+ <p>This is clearly too contracted. The solution here, as exhibited in
+ the first example, is to only slide the dots when possible. Of course,
+ this requires a certain knowledge of the text's meaning. The above
+ adjustments would not necessarily be welcome if we were rendering the
+ final dot of a given paragraph.</p.
+
+ <p>This is only one example, and there are many others showing that a
+ real typographer is needed to layout text properly. If not available,
+ some kind of user interaction or tagging of the text could be used to
+ specify some adjustments, but in all cases, this requires some support
+ in applications and text libraries.</p>
+
+ <p>For more mundane and common uses, however, we can have a very simple
+ algorithm, which avoids the sliding dot problem, and others, though not
+ producing optimal results. It can be seen as</p>
+
+ <ol>
+ <li>
+ Place the first glyph on the baseline.
+ </li>
+ <li>
+ Save the location of the pen position/origin in <tt>pen1</tt>.
+ </li>
+ <li>
+ Adjust the pen position with the kerning distance between the first
+ and second glyph.
+ </li>
+ <li>
+ Place the second glyph and compute the next pen position/origin in
+ <tt>pen2</tt>.
+ </li>
+ <li>
+ Use <tt>pen1</tt> as the next pen position if it is beyond
+ <tt>pen2</tt>, use <tt>pen2</tt> otherwise.
+ </li>
+ </ol>
+
+
+ <p><hr></p>
+
+ <center>
+ <table width="100%"
+ border=0
+ cellpadding=5>
+ <tr bgcolor="#CCFFCC"
+ valign=center>
+ <td align=center
+ width="30%">
+ <a href="glyphs-3.html">Previous</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="index.html">Contents</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="glyphs-5.html">Next</a>
+ </td>
+ </tr>
+ </table>
+ </center>
+
+</td></tr>
+</table>
+</center>
</body>
</html>
diff --git a/docs/glyphs/glyphs-5.html b/docs/glyphs/glyphs-5.html
index deac4ea..11acbc7 100644
--- a/docs/glyphs/glyphs-5.html
+++ b/docs/glyphs/glyphs-5.html
@@ -1,12 +1,13 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en"
+ "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <meta name="Author" content="blob">
- <meta name="GENERATOR" content="Mozilla/4.5 [fr] (Win98; I) [Netscape]">
- <title>FreeType Glyph Conventions</title>
+ <meta http-equiv="Content-Type"
+ content="text/html; charset=iso-8859-1">
+ <meta name="Author"
+ content="David Turner">
+ <title>FreeType Glyph Conventions</title>
</head>
-<body>
<body text="#000000"
bgcolor="#FFFFFF"
@@ -14,262 +15,470 @@
vlink="#51188E"
alink="#FF0000">
-<center><h1>
-FreeType Glyph Conventions
-</h1></center>
-
-<center><h2>
-version 2.1
-</h2></center>
-
-<center><h3>
-Copyright 1998-2000 David Turner (<a href="mailto:david@freetype.org">david@freetype.org</a>)<br>
-Copyright 2000 The FreeType Development Team (<a href="devel@freetype.org">devel@freetype.org</a>)
-</h3></center>
-
-<center><table width=650><tr><td>
-
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="glyphs-4.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="glyphs-6.html">Next</a>
-</td>
-</tr></table></center>
-
-<table width="100%"><tr valign=center bgcolor="#CCCCFF"><td><h2>
-V. Text processing
-</h2></td></tr></table>
-
-<p>This section demonstrates how to use the concepts previously
-defined to render text, whatever the layout you use.
-</p>
-
-
-<h3><a name="section-1">
-1. Writing simple text strings :
-</h3><blockquote>
-
-<p>In this first example, we'll generate a simple string of Roman
-text, i.e. with a horizontal left-to-right layout. Using exclusively pixel
-metrics, the process looks like :
-<blockquote><tt>1) convert the character string into a series of glyph
-indexes.</tt>
-<br><tt>2) place the pen to the cursor position.</tt>
-<br><tt>3) get or load the glyph image.</tt>
-<br><tt>4) translate the glyph so that its 'origin' matches the pen position</tt>
-<br><tt>5) render the glyph to the target device</tt>
-<br><tt>6) increment the pen position by the glyph's advance width in pixels</tt>
-<br><tt>7) start over at step 3 for each of the remaining glyphs</tt>
-<br><tt>8) when all glyphs are done, set the text cursor to the new pen
-position</tt></blockquote>
-Note that kerning isn't part of this algorithm.</blockquote>
-
-<h3><a name="section-2">
-2. Sub-pixel positioning :</h3>
-
-<blockquote>It is somewhat useful to use sub-pixel positioning when rendering
-text. This is crucial, for example, to provide semi-WYSIWYG text layouts.
-Text rendering is very similar to the algorithm described in sub-section
-1, with the following few differences :
-<ul>
-<li>
-The pen position is expressed in fractional pixels.</li>
-
-<li>
-Because translating a hinted outline by a non-integer distance will ruin
-its grid-fitting, the position of the glyph origin must be rounded before
-rendering the character image.</li>
-
-<li>
-The advance width is expressed in fractional pixels, and isn't necessarily
-an integer.</li>
-</ul>
-
-<p><br>Which finally looks like :
-<blockquote><tt>1. convert the character string into a series of glyph
-indexes.</tt>
-<br><tt>2. place the pen to the cursor position. This can be a non-integer
-point.</tt>
-<br><tt>3. get or load the glyph image.</tt>
-<br><tt>4. translate the glyph so that its 'origin' matches the rounded
-pen position.</tt>
-<br><tt>5. render the glyph to the target device</tt>
-<br><tt>6. increment the pen position by the glyph's advance width in fractional
-pixels.</tt>
-<br><tt>7. start over at step 3 for each of the remaining glyphs</tt>
-<br><tt>8. when all glyphs are done, set the text cursor to the new pen
-position</tt></blockquote>
-Note that with fractional pixel positioning, the space between two given
-letters isn't fixed, but determined by the accumulation of previous rounding
-errors in glyph positioning.</blockquote>
-
-<h3><a name="section-3">
-3. Simple kerning :</h3>
-
-<blockquote>Adding kerning to the basic text rendering algorithm is easy
-: when a kerning pair is found, simply add the scaled kerning distance
-to the pen position before step 4. Of course, the distance should be rounded
-in the case of algorithm 1, though it doesn't need to for algorithm 2.
-This gives us :
-<p>Algorithm 1 with kerning:
-<blockquote><tt>3) get or load the glyph image.</tt>
-<br><tt>4) Add the rounded scaled kerning distance, if any, to the pen
-position</tt>
-<br><tt>5) translate the glyph so that its 'origin' matches the pen position</tt>
-<br><tt>6) render the glyph to the target device</tt>
-<br><tt>7) increment the pen position by the glyph's advance width in pixels</tt>
-<br><tt>8) start over at step 3 for each of the remaining glyphs</tt></blockquote>
-
-<p><br>Algorithm 2 with kerning:
-<blockquote><tt>3) get or load the glyph image.</tt>
-<br><tt>4) Add the scaled unrounded kerning distance, if any, to the pen
-position.</tt>
-<br><tt>5) translate the glyph so that its 'origin' matches the rounded
-pen position.</tt>
-<br><tt>6) render the glyph to the target device</tt>
-<br><tt>7) increment the pen position by the glyph's advance width in fractional
-pixels.</tt>
-<br><tt>8) start over at step 3 for each of the remaining glyphs</tt></blockquote>
-Of course, the algorithm described in section IV can also be applied to
-prevent the sliding dot problem if one wants to..</blockquote>
-
-<h3><a name="section-4">
-4. Right-To-Left Layout :</h3>
-
-<blockquote>The process of laying out arabic or hebrew text is extremely
-similar. The only difference is that the pen position must be decremented
-before the glyph rendering (remember : the advance width is always positive,
-even for arabic glyphs). Thus, algorithm 1 becomes :
-<p>Right-to-left Algorithm 1:
-<blockquote><tt>3) get or load the glyph image.</tt>
-<br><tt>4) Decrement the pen position by the glyph's advance width in pixels</tt>
-<br><tt>5) translate the glyph so that its 'origin' matches the pen position</tt>
-<br><tt>6) render the glyph to the target device</tt>
-<br><tt>7) start over at step 3 for each of the remaining glyphs</tt></blockquote>
-
-<p><br>The changes to Algorithm 2, as well as the inclusion of kerning
-are left as an exercise to the reader.
-<br>
-<br> </blockquote>
-
-<h3><a name="section-5">
-5. Vertical layouts :</h3>
-
-<blockquote>Laying out vertical text uses exactly the same processes, with
-the following significant differences :
-<br>
-<blockquote>
-<li>
-The baseline is vertical, and the vertical metrics must be used instead
-of the horizontal one.</li>
-
-<li>
-The left bearing is usually negative, but this doesn't change the fact
-that the glyph origin must be located on the baseline.</li>
-
-<li>
-The advance height is always positive, so the pen position must be decremented
-if one wants to write top to bottom (assuming the Y axis is oriented upwards).</li>
-</blockquote>
-Through the following algorithm :
-<blockquote><tt>1) convert the character string into a series of glyph
-indexes.</tt>
-<br><tt>2) place the pen to the cursor position.</tt>
-<br><tt>3) get or load the glyph image.</tt>
-<br><tt>4) translate the glyph so that its 'origin' matches the pen position</tt>
-<br><tt>5) render the glyph to the target device</tt>
-<br><tt>6) decrement the vertical pen position by the glyph's advance height
-in pixels</tt>
-<br><tt>7) start over at step 3 for each of the remaining glyphs</tt>
-<br><tt>8) when all glyphs are done, set the text cursor to the new pen
-position</tt></blockquote>
-</blockquote>
-
-<h3><a name="section-6">
-6. WYSIWYG text layouts :</h3>
-
-<blockquote>As you probably know, the acronym WYSIWYG stands for '<i>What
-You See Is What You Get</i>'. Basically, this means that the output of
-a document on the screen should match "perfectly" its printed version.
-A <b><i>true</i></b> wysiwyg system requires two things :
-<p><b>device-independent text layout</b>
-<blockquote>Which means that the document's formatting is the same on the
-screen than on any printed output, including line breaks, justification,
-ligatures, fonts, position of inline images, etc..</blockquote>
-
-<p><br><b>matching display and print character sizes</b>
-<blockquote>Which means that the displayed size of a given character should
-match its dimensions when printed. For example, a text string which is
-exactly 1 inch tall when printed should also appear 1 inch tall on the
-screen (when using a scale of 100%).</blockquote>
-
-<p><br>It is clear that matching sizes cannot be possible if the computer
-has no knowledge of the physical resolutions of the display device(s) it
-is using. And of course, this is the most common case ! That's not too
-unfortunate, however because most users really don't care about this
-feature. Legibility is much more important.
-<p>When the Mac appeared, Apple decided to choose a resolution of 72 dpi
-to describe the Macintosh screen to the font sub-system (whatever the monitor
-used). This choice was most probably driven by the fact that, at this resolution,
-1 point = 1 pixel. However; it neglected one crucial fact : as most users
-tend to choose a document character size between 10 and 14 points, the
-resultant displayed text was rather small and not too legible without scaling.
-Microsoft engineers took notice of this problem and chose a resolution
-of 96 dpi on Windows, which resulted in slightly larger, and more legible,
-displayed characters (for the same printed text size).
-<p>These distinct resolutions explain some differences when displaying
-text at the same character size on a Mac and a Windows machine. Moreover,
-it is not unusual to find some TrueType fonts with enhanced hinting (tech
-note: through delta-hinting) for the sizes of 10, 12, 14 and 16 points
-at 96 dpi.
-<br>
-<p>As for device-independent text, it is a notion that is, unfortunately,
-often abused. For example, many word processors, including MS Word, do
-not really use device-independent glyph positioning algorithms when laying
-out text. Rather, they use the target printer's resolution to compute <i>hinted</i>
-glyph metrics for the layout. Though it guarantees that the printed version
-is always the "nicest" it can be, especially for very low resolution printers
-(like dot-matrix), it has a very sad effect : changing the printer can
-have dramatic effects on the <i>whole</i> document layout, especially if
-it makes strong use of justification, uses few page breaks, etc..
-<p>Because the glyph metrics vary slightly when the resolution changes
-(due to hinting), line breaks can change enormously, when these differences
-accumulate over long runs of text. Try for example printing a very long
-document (with no page breaks) on a 300 dpi ink-jet printer, then the same
-one on a 3000 dpi laser printer : you'll be extremely lucky if your final
-page count didn't change between the prints ! Of course, we can still call
-this WYSIWYG, as long as the printer resolution is fixed !!
-<p>Some applications, like Adobe Acrobat, which targeted device-independent
-placement from the start, do not suffer from this problem. There are two
-ways to achieve this : either use the scaled and unhinted glyph metrics
-when laying out text both in the rendering and printing processes, or simply
-use wathever metrics you want and store them with the text in order to
-get sure they're printed the same on all devices (the latter being probably
-the best solution, as it also enables font substitution without breaking
-text layouts).
-<p>Just like matching sizes, device-independent placement isn't necessarily
-a feature that most users want. However, it is pretty clear that for any
-kind of professional document processing work, it <b><i>is</i></b> a requirement.</blockquote>
-</blockquote>
-
-<center><table width="100%" border=0 cellpadding=5><tr bgcolor="#CCFFCC" valign=center>
-<td align=center width="30%">
-<a href="glyphs-4.html">Previous</a>
-</td>
-<td align=center width="30%">
-<a href="index.html">Contents</a>
-</td>
-<td align=center width="30%">
-<a href="glyphs-6.html">Next</a>
-</td>
-</tr></table></center>
-
-</td></tr></table></center>
+<h1 align=center>
+ FreeType Glyph Conventions
+</h1>
+
+<h2 align=center>
+ Version 2.1
+</h2>
+
+<h3 align=center>
+ Copyright 1998-2000 David Turner (<a
+ href="mailto:david@freetype.org">david@freetype.org</a>)<br>
+ Copyright 2000 The FreeType Development Team (<a
+ href="mailto:devel@freetype.org">devel@freetype.org</a>)
+</h3>
+
+<center>
+<table width="65%">
+<tr><td>
+
+ <center>
+ <table width="100%"
+ border=0
+ cellpadding=5>
+ <tr bgcolor="#CCFFCC"
+ valign=center>
+ <td align=center
+ width="30%">
+ <a href="glyphs-4.html">Previous</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="index.html">Contents</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="glyphs-6.html">Next</a>
+ </td>
+ </tr>
+ </table>
+ </center>
+
+ <p><hr></p>
+
+ <table width="100%">
+ <tr bgcolor="#CCCCFF"
+ valign=center><td>
+ <h2>
+ V. Text processing
+ </h2>
+ </td></tr>
+ </table>
+
+ <p>This section demonstrates how to use the concepts previously defined
+ to render text, whatever the layout you use.</p>
+
+
+ <a name="section-1">
+ <h3>
+ 1. Writing simple text strings
+ </h3>
+
+ <p>In this first example, we will generate a simple string of Roman
+ text, i.e. with a horizontal left-to-right layout. Using exclusively
+ pixel metrics, the process looks like:
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Translate the glyph so that its 'origin' matches the pen position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Increment the pen position by the glyph's advance width in pixels.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ <li>
+ When all glyphs are done, set the text cursor to the new pen
+ position.
+ </li>
+ </ol>
+ </tt>
+
+ <p>Note that kerning isn't part of this algorithm.</p>
+
+
+ <a name="section-2">
+ <h3>
+ 2. Sub-pixel positioning
+ </h3>
+
+ <p>It is somewhat useful to use sub-pixel positioning when rendering
+ text. This is crucial, for example, to provide semi-WYSIWYG text
+ layouts. Text rendering is very similar to the algorithm described in
+ subsection 1, with the following few differences:</p>
+
+ <ul>
+ <li>
+ The pen position is expressed in fractional pixels.
+ </li>
+ <li>
+ Because translating a hinted outline by a non-integer distance will
+ ruin its grid-fitting, the position of the glyph origin must be
+ rounded before rendering the character image.
+ </li>
+ <li>
+ The advance width is expressed in fractional pixels, and isn't
+ necessarily an integer.
+ </li>
+ </ol>
+
+ <p>Here an improved version of the algorithm:</p>
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position. This can be a non-integer
+ point.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Translate the glyph so that its "origin" matches the rounded pen
+ position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Increment the pen position by the glyph's advance width in
+ fractional pixels.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ <li>
+ When all glyphs are done, set the text cursor to the new pen
+ position.
+ </li>
+ </ol>
+ </tt>
+
+ <p>Note that with fractional pixel positioning, the space between two
+ given letters isn't fixed, but determined by the accumulation of
+ previous rounding errors in glyph positioning.</p>
+
+
+ <a name="section-3">
+ <h3>
+ 3. Simple kerning
+ </h3>
+
+ <p>Adding kerning to the basic text rendering algorithm is easy: When a
+ kerning pair is found, simply add the scaled kerning distance to the pen
+ position before step 4. Of course, the distance should be rounded
+ in the case of algorithm 1, though it doesn't need to for
+ algorithm 2. This gives us:</p>
+
+ <p>Algorithm 1 with kerning:</p>
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Add the rounded scaled kerning distance, if any, to the pen
+ position.
+ </li>
+ <li>
+ Translate the glyph so that its "origin" matches the pen position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Increment the pen position by the glyph's advance width in pixels.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ </ol>
+ </tt>
+
+ <p>Algorithm 2 with kerning:</p>
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Add the scaled unrounded kerning distance, if any, to the pen
+ position.
+ </li>
+ <li>
+ Translate the glyph so that its "origin" matches the rounded pen
+ position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Increment the pen position by the glyph's advance width in
+ fractional pixels.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ </ol>
+ </tt>
+
+ Of course, the algorithm described in section IV can also be
+ applied to prevent the sliding dot problem if one wants to.
+
+
+ <a name="section-4">
+ <h3>
+ 4. Right-to-left layout
+ </h3>
+
+ <p>The process of laying out Arabic or Hebrew text is extremely similar.
+ The only difference is that the pen position must be decremented before
+ the glyph rendering (remember: the advance width is always positive,
+ even for Arabic glyphs).</p>
+
+ <p>Right-to-left algorithm 1:</p>
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Decrement the pen position by the glyph's advance width in pixels.
+ </li>
+ <li>
+ Translate the glyph so that its "origin" matches the pen position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ </ol>
+ </tt>
+
+ <p>The changes to algorithm 2, as well as the inclusion of kerning
+ are left as an exercise to the reader.</p>
+
+
+ <a name="section-5">
+ <h3>
+ 5. Vertical layouts
+ </h3>
+
+ <p>Laying out vertical text uses exactly the same processes, with the
+ following significant differences:</p>
+
+ <ul>
+ <li>
+ <p>The baseline is vertical, and the vertical metrics must be used
+ instead of the horizontal one.</p>
+ </li>
+ <li>
+ <p>The left bearing is usually negative, but this doesn't change the
+ fact that the glyph origin must be located on the baseline.</p>
+ </li>
+ <li>
+ The advance height is always positive, so the pen position must be
+ decremented if one wants to write top to bottom (assuming the
+ <i>Y</i> axis is oriented upwards).
+ </li>
+ </ul>
+
+ <p>Here the algorithm:</p>
+
+ <tt>
+ <ol>
+ <li>
+ Convert the character string into a series of glyph
+ indices.
+ </li>
+ <li>
+ Place the pen to the cursor position.
+ </li>
+ <li>
+ Get or load the glyph image.
+ </li>
+ <li>
+ Translate the glyph so that its "origin" matches the pen position.
+ </li>
+ <li>
+ Render the glyph to the target device.
+ </li>
+ <li>
+ Decrement the vertical pen position by the glyph's advance height
+ in pixels.
+ </li>
+ <li>
+ Start over at step 3 for each of the remaining glyphs.
+ </li>
+ <li>
+ When all glyphs are done, set the text cursor to the new pen
+ position.
+ </li>
+ </ol>
+ </tt>
+
+
+ <a name="section-6">
+ <h3>
+ 6. WYSIWYG text layouts
+ </h3>
+
+ <p>As you probably know, the acronym WYSIWYG stands for "What You See Is
+ What You Get". Basically, this means that the output of a document on
+ the screen should match "perfectly" its printed version. A
+ <em>true</em> WYSIWYG system requires two things:</p>
+
+ <ul>
+ <li>
+ <p><em>device-independent text layout</em></p>
+
+ <p>This means that the document's formatting is the same on the
+ screen than on any printed output, including line breaks,
+ justification, ligatures, fonts, position of inline images, etc.</p>
+ </li>
+ <li>
+ <p><em>matching display and print character sizes</em></p>
+
+ <p>The displayed size of a given character should match its
+ dimensions when printed. For example, a text string which is
+ exactly 1 inch tall when printed should also appear 1 inch
+ tall on the screen (when using a scale of 100%).</p>
+ </li>
+ </ul>
+
+ <p>It is clear that matching sizes cannot be possible if the computer
+ has no knowledge of the physical resolutions of the display device(s) it
+ is using. And of course, this is the most common case! That is not too
+ unfortunate, however, because most users really don't care about this
+ feature. Legibility is much more important.</p>
+
+ <p>When the Mac appeared, Apple decided to choose a resolution of
+ 72 dpi to describe the Macintosh screen to the font sub-system
+ (whatever the monitor used). This choice was most probably driven by
+ the fact that, at this resolution, 1 point equals exactly
+ 1 pixel. However, it neglected one crucial fact: As most users
+ tend to choose a document character size between 10 and 14 points,
+ the resultant displayed text was rather small and not too legible
+ without scaling. Microsoft engineers took notice of this problem and
+ chose a resolution of 96 dpi on Windows, which resulted in slightly
+ larger, and more legible, displayed characters (for the same printed
+ text size).</p>
+
+ <p>These distinct resolutions explain some differences when displaying
+ text at the same character size on a Mac and a Windows machine.
+ Moreover, it is not unusual to find some TrueType fonts with enhanced
+ hinting (technical note: through delta-hinting) for the sizes of 10, 12,
+ 14 and 16 points at 96 dpi.</p>
+
+ <p>The term <em>device-independent text</em> is, unfortunately, often
+ abused. For example, many word processors, including MS Word, do
+ not really use device-independent glyph positioning algorithms when
+ laying out text. Rather, they use the target printer's resolution to
+ compute <em>hinted</em> glyph metrics for the layout. Though it
+ guarantees that the printed version is always the "nicest" it can be,
+ especially for very low resolution printers (like dot-matrix), it has a
+ very sad effect: Changing the printer can have dramatic effects on the
+ <em>whole</em> document layout, especially if it makes strong use of
+ justification, uses few page breaks, etc.</p>
+
+ <p>Because glyph metrics vary slightly when the resolution changes (due
+ to hinting), line breaks can change enormously, when these differences
+ accumulate over long runs of text. Try for example printing a very long
+ document (with no page breaks) on a 300 dpi ink-jet printer, then
+ the same one on a 3000 dpi laser printer: You will be extremely
+ lucky if your final page count didn't change between the prints! Of
+ course, we can still call this WYSIWYG, as long as the printer
+ resolution is fixed.</p>
+
+ <p>Some applications, like Adobe Acrobat, which targeted
+ device-independent placement from the start, do not suffer from this
+ problem. There are two ways to achieve this: either use the scaled and
+ unhinted glyph metrics when laying out text both in the rendering and
+ printing processes, or simply use whatever metrics you want and store
+ them with the text in order to get sure they are printed the same on all
+ devices (the latter being probably the best solution, as it also enables
+ font substitution without breaking text layouts).</p>
+
+ <p>Just like matching sizes, device-independent placement isn't
+ necessarily a feature that most users want. However, it is pretty clear
+ that for any kind of professional document processing work, it
+ <em>is</em> a requirement.</p>
+
+
+ <p><hr></p>
+
+ <center>
+ <table width="100%"
+ border=0
+ cellpadding=5>
+ <tr bgcolor="#CCFFCC"
+ valign=center>
+ <td align=center
+ width="30%">
+ <a href="glyphs-4.html">Previous</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="index.html">Contents</a>
+ </td>
+ <td align=center
+ width="30%">
+ <a href="glyphs-6.html">Next</a>
+ </td>
+ </tr>
+ </table>
+ </center>
+
+</td></tr>
+</table>
+</center>
</body>
</html>