mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-11-01 03:02:32 +00:00
39528a1441
- Some unused vars were removed from AddFont() method. - Some directories were moved inside the examples directory. - All examples were updated to reflect the new default structure. - Source code were clean-up up to be more compatible with system packaging. - Files encodings and permissions were reset. - The command line tool tcpdf_addfont.php was added on the tools directory.
39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?php
|
|
$type = 'cidfont0';
|
|
$name = 'MSungStd-Light-Acro';
|
|
$displayname = 'MSung Light (Trad. Chinese)';
|
|
$desc = array(
|
|
'Ascent' => 880,
|
|
'Descent' => -120,
|
|
'CapHeight' => 880,
|
|
'Flags' => 6,
|
|
'FontBBox' => '[-160 -249 1015 1071]',
|
|
'ItalicAngle' => 0,
|
|
'StemV' => 93,
|
|
);
|
|
$cidinfo = array(
|
|
'Registry' => 'Adobe',
|
|
'Ordering' => 'CNS1',
|
|
'Supplement' => '3',
|
|
);
|
|
$enc = 'UniCNS-UCS2-H';
|
|
|
|
$up = -130;
|
|
$ut = 40;
|
|
|
|
$dw = 1000;
|
|
$cw = array(
|
|
32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
|
|
42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
|
|
52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
|
|
62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
|
|
72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
|
|
82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
|
|
92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
|
|
102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
|
|
112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
|
|
122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
|
|
17601 => 500,
|
|
);
|
|
// --- EOF ---
|