hexapdf 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +68 -0
- data/CONTRIBUTERS +1 -1
- data/README.md +35 -4
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/data/hexapdf/cmap/83pv-RKSJ-H +314 -0
- data/data/hexapdf/cmap/90ms-RKSJ-H +259 -0
- data/data/hexapdf/cmap/90ms-RKSJ-V +156 -0
- data/data/hexapdf/cmap/90msp-RKSJ-H +257 -0
- data/data/hexapdf/cmap/90msp-RKSJ-V +155 -0
- data/data/hexapdf/cmap/90pv-RKSJ-H +355 -0
- data/data/hexapdf/cmap/Add-RKSJ-H +738 -0
- data/data/hexapdf/cmap/Add-RKSJ-V +135 -0
- data/data/hexapdf/cmap/Adobe-CNS1-UCS2 +18209 -0
- data/data/hexapdf/cmap/Adobe-GB1-UCS2 +14267 -0
- data/data/hexapdf/cmap/Adobe-Japan1-UCS2 +19159 -0
- data/data/hexapdf/cmap/Adobe-Korea1-UCS2 +9267 -0
- data/data/hexapdf/cmap/B5pc-H +337 -0
- data/data/hexapdf/cmap/B5pc-V +90 -0
- data/data/hexapdf/cmap/CNS-EUC-H +490 -0
- data/data/hexapdf/cmap/CNS-EUC-V +538 -0
- data/data/hexapdf/cmap/ETen-B5-H +343 -0
- data/data/hexapdf/cmap/ETen-B5-V +91 -0
- data/data/hexapdf/cmap/ETenms-B5-H +79 -0
- data/data/hexapdf/cmap/ETenms-B5-V +99 -0
- data/data/hexapdf/cmap/EUC-H +207 -0
- data/data/hexapdf/cmap/EUC-V +105 -0
- data/data/hexapdf/cmap/Ext-RKSJ-H +768 -0
- data/data/hexapdf/cmap/Ext-RKSJ-V +117 -0
- data/data/hexapdf/cmap/GB-EUC-H +173 -0
- data/data/hexapdf/cmap/GB-EUC-V +98 -0
- data/data/hexapdf/cmap/GBK-EUC-H +4273 -0
- data/data/hexapdf/cmap/GBK-EUC-V +97 -0
- data/data/hexapdf/cmap/GBK2K-H +5325 -0
- data/data/hexapdf/cmap/GBK2K-V +118 -0
- data/data/hexapdf/cmap/GBKp-EUC-H +4272 -0
- data/data/hexapdf/cmap/GBKp-EUC-V +97 -0
- data/data/hexapdf/cmap/GBpc-EUC-H +175 -0
- data/data/hexapdf/cmap/GBpc-EUC-V +98 -0
- data/data/hexapdf/cmap/H +200 -0
- data/data/hexapdf/cmap/HKscs-B5-H +1331 -0
- data/data/hexapdf/cmap/HKscs-B5-V +90 -0
- data/data/hexapdf/cmap/Identity-H +339 -0
- data/data/hexapdf/cmap/Identity-V +73 -0
- data/data/hexapdf/cmap/KSC-EUC-H +562 -0
- data/data/hexapdf/cmap/KSC-EUC-V +94 -0
- data/data/hexapdf/cmap/KSCms-UHC-H +776 -0
- data/data/hexapdf/cmap/KSCms-UHC-HW-H +775 -0
- data/data/hexapdf/cmap/KSCms-UHC-HW-V +93 -0
- data/data/hexapdf/cmap/KSCms-UHC-V +94 -0
- data/data/hexapdf/cmap/KSCpc-EUC-H +608 -0
- data/data/hexapdf/cmap/LICENSE.txt +26 -0
- data/data/hexapdf/cmap/README.txt +9 -0
- data/data/hexapdf/cmap/UniCNS-UCS2-H +16992 -0
- data/data/hexapdf/cmap/UniCNS-UCS2-V +90 -0
- data/data/hexapdf/cmap/UniCNS-UTF16-H +19117 -0
- data/data/hexapdf/cmap/UniCNS-UTF16-V +94 -0
- data/data/hexapdf/cmap/UniGB-UCS2-H +14321 -0
- data/data/hexapdf/cmap/UniGB-UCS2-V +101 -0
- data/data/hexapdf/cmap/UniGB-UTF16-H +14381 -0
- data/data/hexapdf/cmap/UniGB-UTF16-V +104 -0
- data/data/hexapdf/cmap/UniJIS-UCS2-H +8870 -0
- data/data/hexapdf/cmap/UniJIS-UCS2-HW-H +81 -0
- data/data/hexapdf/cmap/UniJIS-UCS2-HW-V +279 -0
- data/data/hexapdf/cmap/UniJIS-UCS2-V +275 -0
- data/data/hexapdf/cmap/UniJIS-UTF16-H +14450 -0
- data/data/hexapdf/cmap/UniJIS-UTF16-V +299 -0
- data/data/hexapdf/cmap/UniKS-UCS2-H +8725 -0
- data/data/hexapdf/cmap/UniKS-UCS2-V +95 -0
- data/data/hexapdf/cmap/UniKS-UTF16-H +8895 -0
- data/data/hexapdf/cmap/UniKS-UTF16-V +99 -0
- data/data/hexapdf/cmap/V +105 -0
- data/examples/arc.rb +3 -3
- data/examples/merging.rb +4 -1
- data/examples/optimizing.rb +3 -0
- data/examples/show_char_bboxes.rb +2 -2
- data/examples/truetype.rb +2 -2
- data/lib/hexapdf/cli.rb +40 -1
- data/lib/hexapdf/cli/batch.rb +72 -0
- data/lib/hexapdf/cli/command.rb +112 -15
- data/lib/hexapdf/cli/files.rb +2 -2
- data/lib/hexapdf/cli/images.rb +14 -6
- data/lib/hexapdf/cli/info.rb +6 -8
- data/lib/hexapdf/cli/inspect.rb +5 -8
- data/lib/hexapdf/cli/merge.rb +13 -20
- data/lib/hexapdf/cli/modify.rb +4 -7
- data/lib/hexapdf/cli/optimize.rb +2 -5
- data/lib/hexapdf/configuration.rb +32 -3
- data/lib/hexapdf/content/canvas.rb +130 -37
- data/lib/hexapdf/content/parser.rb +40 -6
- data/lib/hexapdf/content/processor.rb +4 -4
- data/lib/hexapdf/document.rb +40 -10
- data/lib/hexapdf/document/fonts.rb +1 -0
- data/lib/hexapdf/encryption/security_handler.rb +8 -12
- data/lib/hexapdf/filter/flate_decode.rb +25 -2
- data/lib/hexapdf/font/cmap.rb +124 -8
- data/lib/hexapdf/font/cmap/parser.rb +65 -15
- data/lib/hexapdf/font/encoding/base.rb +2 -2
- data/lib/hexapdf/font/encoding/glyph_list.rb +2 -4
- data/lib/hexapdf/font/true_type.rb +1 -0
- data/lib/hexapdf/font/true_type/builder.rb +75 -0
- data/lib/hexapdf/font/true_type/optimizer.rb +65 -0
- data/lib/hexapdf/font/true_type/subsetter.rb +9 -22
- data/lib/hexapdf/font/true_type_wrapper.rb +9 -21
- data/lib/hexapdf/font_loader.rb +1 -1
- data/lib/hexapdf/importer.rb +1 -1
- data/lib/hexapdf/serializer.rb +5 -3
- data/lib/hexapdf/type.rb +2 -0
- data/lib/hexapdf/type/cid_font.rb +120 -0
- data/lib/hexapdf/type/font.rb +32 -12
- data/lib/hexapdf/type/font_simple.rb +34 -42
- data/lib/hexapdf/type/font_type0.rb +148 -0
- data/lib/hexapdf/type/form.rb +4 -4
- data/lib/hexapdf/type/page.rb +12 -11
- data/lib/hexapdf/type/resources.rb +14 -0
- data/lib/hexapdf/utils/graphics_helpers.rb +77 -0
- data/lib/hexapdf/version.rb +1 -1
- data/man/man1/hexapdf.1 +43 -1
- data/test/hexapdf/content/test_canvas.rb +76 -0
- data/test/hexapdf/content/test_parser.rb +20 -1
- data/test/hexapdf/content/test_processor.rb +11 -7
- data/test/hexapdf/document/test_fonts.rb +3 -1
- data/test/hexapdf/font/cmap/test_parser.rb +42 -7
- data/test/hexapdf/font/encoding/test_base.rb +1 -1
- data/test/hexapdf/font/encoding/test_glyph_list.rb +3 -3
- data/test/hexapdf/font/test_cmap.rb +104 -0
- data/test/hexapdf/font/test_true_type_wrapper.rb +63 -46
- data/test/hexapdf/font/true_type/test_builder.rb +37 -0
- data/test/hexapdf/font/true_type/test_optimizer.rb +27 -0
- data/test/hexapdf/font/true_type/test_subsetter.rb +6 -13
- data/test/hexapdf/test_configuration.rb +12 -7
- data/test/hexapdf/test_document.rb +24 -0
- data/test/hexapdf/test_importer.rb +9 -1
- data/test/hexapdf/test_writer.rb +2 -2
- data/test/hexapdf/type/test_cid_font.rb +61 -0
- data/test/hexapdf/type/test_font.rb +31 -4
- data/test/hexapdf/type/test_font_simple.rb +6 -21
- data/test/hexapdf/type/test_font_type0.rb +114 -0
- data/test/hexapdf/type/test_resources.rb +17 -1
- data/test/hexapdf/utils/test_graphics_helpers.rb +29 -0
- metadata +82 -3
@@ -0,0 +1,90 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%DocumentNeededResources: CMap (HKscs-B5-H)
|
4
|
+
%%IncludeResource: ProcSet (CIDInit)
|
5
|
+
%%IncludeResource: CMap (HKscs-B5-H)
|
6
|
+
%%BeginResource: CMap (HKscs-B5-V)
|
7
|
+
%%Title: (HKscs-B5-V Adobe CNS1 6)
|
8
|
+
%%Version: 13.007
|
9
|
+
%%Copyright: -----------------------------------------------------------
|
10
|
+
%%Copyright: Copyright 1990-2015 Adobe Systems Incorporated.
|
11
|
+
%%Copyright: All rights reserved.
|
12
|
+
%%Copyright:
|
13
|
+
%%Copyright: Redistribution and use in source and binary forms, with or
|
14
|
+
%%Copyright: without modification, are permitted provided that the
|
15
|
+
%%Copyright: following conditions are met:
|
16
|
+
%%Copyright:
|
17
|
+
%%Copyright: Redistributions of source code must retain the above
|
18
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
19
|
+
%%Copyright: disclaimer.
|
20
|
+
%%Copyright:
|
21
|
+
%%Copyright: Redistributions in binary form must reproduce the above
|
22
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
23
|
+
%%Copyright: disclaimer in the documentation and/or other materials
|
24
|
+
%%Copyright: provided with the distribution.
|
25
|
+
%%Copyright:
|
26
|
+
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
27
|
+
%%Copyright: of its contributors may be used to endorse or promote
|
28
|
+
%%Copyright: products derived from this software without specific prior
|
29
|
+
%%Copyright: written permission.
|
30
|
+
%%Copyright:
|
31
|
+
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
32
|
+
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
33
|
+
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
34
|
+
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
35
|
+
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
36
|
+
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
37
|
+
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
38
|
+
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
39
|
+
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
40
|
+
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
41
|
+
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
42
|
+
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
43
|
+
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
44
|
+
%%Copyright: -----------------------------------------------------------
|
45
|
+
%%EndComments
|
46
|
+
|
47
|
+
/CIDInit /ProcSet findresource begin
|
48
|
+
|
49
|
+
12 dict begin
|
50
|
+
|
51
|
+
begincmap
|
52
|
+
|
53
|
+
/HKscs-B5-H usecmap
|
54
|
+
|
55
|
+
/CIDSystemInfo 3 dict dup begin
|
56
|
+
/Registry (Adobe) def
|
57
|
+
/Ordering (CNS1) def
|
58
|
+
/Supplement 6 def
|
59
|
+
end def
|
60
|
+
|
61
|
+
/CMapName /HKscs-B5-V def
|
62
|
+
/CMapVersion 13.007 def
|
63
|
+
/CMapType 1 def
|
64
|
+
|
65
|
+
/XUID [1 10 25581] def
|
66
|
+
|
67
|
+
/WMode 1 def
|
68
|
+
|
69
|
+
13 begincidrange
|
70
|
+
<a14b> <a14b> 13646
|
71
|
+
<a15a> <a15a> 13743
|
72
|
+
<a15c> <a15c> 13745
|
73
|
+
<a15d> <a15e> 130
|
74
|
+
<a161> <a162> 134
|
75
|
+
<a165> <a166> 138
|
76
|
+
<a169> <a16a> 142
|
77
|
+
<a16d> <a16e> 146
|
78
|
+
<a171> <a172> 150
|
79
|
+
<a175> <a176> 154
|
80
|
+
<a179> <a17a> 158
|
81
|
+
<a1e3> <a1e3> 13647
|
82
|
+
<c6e4> <c6e5> 14097
|
83
|
+
endcidrange
|
84
|
+
endcmap
|
85
|
+
CMapName currentdict /CMap defineresource pop
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
%%EndResource
|
90
|
+
%%EOF
|
@@ -0,0 +1,339 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%IncludeResource: ProcSet (CIDInit)
|
4
|
+
%%BeginResource: CMap (Identity-H)
|
5
|
+
%%Title: (Identity-H Adobe Identity 0)
|
6
|
+
%%Version: 10.005
|
7
|
+
%%Copyright: -----------------------------------------------------------
|
8
|
+
%%Copyright: Copyright 1990-2015 Adobe Systems Incorporated.
|
9
|
+
%%Copyright: All rights reserved.
|
10
|
+
%%Copyright:
|
11
|
+
%%Copyright: Redistribution and use in source and binary forms, with or
|
12
|
+
%%Copyright: without modification, are permitted provided that the
|
13
|
+
%%Copyright: following conditions are met:
|
14
|
+
%%Copyright:
|
15
|
+
%%Copyright: Redistributions of source code must retain the above
|
16
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
17
|
+
%%Copyright: disclaimer.
|
18
|
+
%%Copyright:
|
19
|
+
%%Copyright: Redistributions in binary form must reproduce the above
|
20
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
21
|
+
%%Copyright: disclaimer in the documentation and/or other materials
|
22
|
+
%%Copyright: provided with the distribution.
|
23
|
+
%%Copyright:
|
24
|
+
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
25
|
+
%%Copyright: of its contributors may be used to endorse or promote
|
26
|
+
%%Copyright: products derived from this software without specific prior
|
27
|
+
%%Copyright: written permission.
|
28
|
+
%%Copyright:
|
29
|
+
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
30
|
+
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
31
|
+
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
32
|
+
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
33
|
+
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
34
|
+
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
35
|
+
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
36
|
+
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
37
|
+
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
38
|
+
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
39
|
+
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
40
|
+
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
41
|
+
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
42
|
+
%%Copyright: -----------------------------------------------------------
|
43
|
+
%%EndComments
|
44
|
+
|
45
|
+
/CIDInit /ProcSet findresource begin
|
46
|
+
|
47
|
+
12 dict begin
|
48
|
+
|
49
|
+
begincmap
|
50
|
+
|
51
|
+
/CIDSystemInfo 3 dict dup begin
|
52
|
+
/Registry (Adobe) def
|
53
|
+
/Ordering (Identity) def
|
54
|
+
/Supplement 0 def
|
55
|
+
end def
|
56
|
+
|
57
|
+
/CMapName /Identity-H def
|
58
|
+
/CMapVersion 10.005 def
|
59
|
+
/CMapType 1 def
|
60
|
+
|
61
|
+
/XUID [1 10 25404 9999] def
|
62
|
+
|
63
|
+
/WMode 0 def
|
64
|
+
|
65
|
+
1 begincodespacerange
|
66
|
+
<0000> <FFFF>
|
67
|
+
endcodespacerange
|
68
|
+
|
69
|
+
100 begincidrange
|
70
|
+
<0000> <00ff> 0
|
71
|
+
<0100> <01ff> 256
|
72
|
+
<0200> <02ff> 512
|
73
|
+
<0300> <03ff> 768
|
74
|
+
<0400> <04ff> 1024
|
75
|
+
<0500> <05ff> 1280
|
76
|
+
<0600> <06ff> 1536
|
77
|
+
<0700> <07ff> 1792
|
78
|
+
<0800> <08ff> 2048
|
79
|
+
<0900> <09ff> 2304
|
80
|
+
<0a00> <0aff> 2560
|
81
|
+
<0b00> <0bff> 2816
|
82
|
+
<0c00> <0cff> 3072
|
83
|
+
<0d00> <0dff> 3328
|
84
|
+
<0e00> <0eff> 3584
|
85
|
+
<0f00> <0fff> 3840
|
86
|
+
<1000> <10ff> 4096
|
87
|
+
<1100> <11ff> 4352
|
88
|
+
<1200> <12ff> 4608
|
89
|
+
<1300> <13ff> 4864
|
90
|
+
<1400> <14ff> 5120
|
91
|
+
<1500> <15ff> 5376
|
92
|
+
<1600> <16ff> 5632
|
93
|
+
<1700> <17ff> 5888
|
94
|
+
<1800> <18ff> 6144
|
95
|
+
<1900> <19ff> 6400
|
96
|
+
<1a00> <1aff> 6656
|
97
|
+
<1b00> <1bff> 6912
|
98
|
+
<1c00> <1cff> 7168
|
99
|
+
<1d00> <1dff> 7424
|
100
|
+
<1e00> <1eff> 7680
|
101
|
+
<1f00> <1fff> 7936
|
102
|
+
<2000> <20ff> 8192
|
103
|
+
<2100> <21ff> 8448
|
104
|
+
<2200> <22ff> 8704
|
105
|
+
<2300> <23ff> 8960
|
106
|
+
<2400> <24ff> 9216
|
107
|
+
<2500> <25ff> 9472
|
108
|
+
<2600> <26ff> 9728
|
109
|
+
<2700> <27ff> 9984
|
110
|
+
<2800> <28ff> 10240
|
111
|
+
<2900> <29ff> 10496
|
112
|
+
<2a00> <2aff> 10752
|
113
|
+
<2b00> <2bff> 11008
|
114
|
+
<2c00> <2cff> 11264
|
115
|
+
<2d00> <2dff> 11520
|
116
|
+
<2e00> <2eff> 11776
|
117
|
+
<2f00> <2fff> 12032
|
118
|
+
<3000> <30ff> 12288
|
119
|
+
<3100> <31ff> 12544
|
120
|
+
<3200> <32ff> 12800
|
121
|
+
<3300> <33ff> 13056
|
122
|
+
<3400> <34ff> 13312
|
123
|
+
<3500> <35ff> 13568
|
124
|
+
<3600> <36ff> 13824
|
125
|
+
<3700> <37ff> 14080
|
126
|
+
<3800> <38ff> 14336
|
127
|
+
<3900> <39ff> 14592
|
128
|
+
<3a00> <3aff> 14848
|
129
|
+
<3b00> <3bff> 15104
|
130
|
+
<3c00> <3cff> 15360
|
131
|
+
<3d00> <3dff> 15616
|
132
|
+
<3e00> <3eff> 15872
|
133
|
+
<3f00> <3fff> 16128
|
134
|
+
<4000> <40ff> 16384
|
135
|
+
<4100> <41ff> 16640
|
136
|
+
<4200> <42ff> 16896
|
137
|
+
<4300> <43ff> 17152
|
138
|
+
<4400> <44ff> 17408
|
139
|
+
<4500> <45ff> 17664
|
140
|
+
<4600> <46ff> 17920
|
141
|
+
<4700> <47ff> 18176
|
142
|
+
<4800> <48ff> 18432
|
143
|
+
<4900> <49ff> 18688
|
144
|
+
<4a00> <4aff> 18944
|
145
|
+
<4b00> <4bff> 19200
|
146
|
+
<4c00> <4cff> 19456
|
147
|
+
<4d00> <4dff> 19712
|
148
|
+
<4e00> <4eff> 19968
|
149
|
+
<4f00> <4fff> 20224
|
150
|
+
<5000> <50ff> 20480
|
151
|
+
<5100> <51ff> 20736
|
152
|
+
<5200> <52ff> 20992
|
153
|
+
<5300> <53ff> 21248
|
154
|
+
<5400> <54ff> 21504
|
155
|
+
<5500> <55ff> 21760
|
156
|
+
<5600> <56ff> 22016
|
157
|
+
<5700> <57ff> 22272
|
158
|
+
<5800> <58ff> 22528
|
159
|
+
<5900> <59ff> 22784
|
160
|
+
<5a00> <5aff> 23040
|
161
|
+
<5b00> <5bff> 23296
|
162
|
+
<5c00> <5cff> 23552
|
163
|
+
<5d00> <5dff> 23808
|
164
|
+
<5e00> <5eff> 24064
|
165
|
+
<5f00> <5fff> 24320
|
166
|
+
<6000> <60ff> 24576
|
167
|
+
<6100> <61ff> 24832
|
168
|
+
<6200> <62ff> 25088
|
169
|
+
<6300> <63ff> 25344
|
170
|
+
endcidrange
|
171
|
+
|
172
|
+
100 begincidrange
|
173
|
+
<6400> <64ff> 25600
|
174
|
+
<6500> <65ff> 25856
|
175
|
+
<6600> <66ff> 26112
|
176
|
+
<6700> <67ff> 26368
|
177
|
+
<6800> <68ff> 26624
|
178
|
+
<6900> <69ff> 26880
|
179
|
+
<6a00> <6aff> 27136
|
180
|
+
<6b00> <6bff> 27392
|
181
|
+
<6c00> <6cff> 27648
|
182
|
+
<6d00> <6dff> 27904
|
183
|
+
<6e00> <6eff> 28160
|
184
|
+
<6f00> <6fff> 28416
|
185
|
+
<7000> <70ff> 28672
|
186
|
+
<7100> <71ff> 28928
|
187
|
+
<7200> <72ff> 29184
|
188
|
+
<7300> <73ff> 29440
|
189
|
+
<7400> <74ff> 29696
|
190
|
+
<7500> <75ff> 29952
|
191
|
+
<7600> <76ff> 30208
|
192
|
+
<7700> <77ff> 30464
|
193
|
+
<7800> <78ff> 30720
|
194
|
+
<7900> <79ff> 30976
|
195
|
+
<7a00> <7aff> 31232
|
196
|
+
<7b00> <7bff> 31488
|
197
|
+
<7c00> <7cff> 31744
|
198
|
+
<7d00> <7dff> 32000
|
199
|
+
<7e00> <7eff> 32256
|
200
|
+
<7f00> <7fff> 32512
|
201
|
+
<8000> <80ff> 32768
|
202
|
+
<8100> <81ff> 33024
|
203
|
+
<8200> <82ff> 33280
|
204
|
+
<8300> <83ff> 33536
|
205
|
+
<8400> <84ff> 33792
|
206
|
+
<8500> <85ff> 34048
|
207
|
+
<8600> <86ff> 34304
|
208
|
+
<8700> <87ff> 34560
|
209
|
+
<8800> <88ff> 34816
|
210
|
+
<8900> <89ff> 35072
|
211
|
+
<8a00> <8aff> 35328
|
212
|
+
<8b00> <8bff> 35584
|
213
|
+
<8c00> <8cff> 35840
|
214
|
+
<8d00> <8dff> 36096
|
215
|
+
<8e00> <8eff> 36352
|
216
|
+
<8f00> <8fff> 36608
|
217
|
+
<9000> <90ff> 36864
|
218
|
+
<9100> <91ff> 37120
|
219
|
+
<9200> <92ff> 37376
|
220
|
+
<9300> <93ff> 37632
|
221
|
+
<9400> <94ff> 37888
|
222
|
+
<9500> <95ff> 38144
|
223
|
+
<9600> <96ff> 38400
|
224
|
+
<9700> <97ff> 38656
|
225
|
+
<9800> <98ff> 38912
|
226
|
+
<9900> <99ff> 39168
|
227
|
+
<9a00> <9aff> 39424
|
228
|
+
<9b00> <9bff> 39680
|
229
|
+
<9c00> <9cff> 39936
|
230
|
+
<9d00> <9dff> 40192
|
231
|
+
<9e00> <9eff> 40448
|
232
|
+
<9f00> <9fff> 40704
|
233
|
+
<a000> <a0ff> 40960
|
234
|
+
<a100> <a1ff> 41216
|
235
|
+
<a200> <a2ff> 41472
|
236
|
+
<a300> <a3ff> 41728
|
237
|
+
<a400> <a4ff> 41984
|
238
|
+
<a500> <a5ff> 42240
|
239
|
+
<a600> <a6ff> 42496
|
240
|
+
<a700> <a7ff> 42752
|
241
|
+
<a800> <a8ff> 43008
|
242
|
+
<a900> <a9ff> 43264
|
243
|
+
<aa00> <aaff> 43520
|
244
|
+
<ab00> <abff> 43776
|
245
|
+
<ac00> <acff> 44032
|
246
|
+
<ad00> <adff> 44288
|
247
|
+
<ae00> <aeff> 44544
|
248
|
+
<af00> <afff> 44800
|
249
|
+
<b000> <b0ff> 45056
|
250
|
+
<b100> <b1ff> 45312
|
251
|
+
<b200> <b2ff> 45568
|
252
|
+
<b300> <b3ff> 45824
|
253
|
+
<b400> <b4ff> 46080
|
254
|
+
<b500> <b5ff> 46336
|
255
|
+
<b600> <b6ff> 46592
|
256
|
+
<b700> <b7ff> 46848
|
257
|
+
<b800> <b8ff> 47104
|
258
|
+
<b900> <b9ff> 47360
|
259
|
+
<ba00> <baff> 47616
|
260
|
+
<bb00> <bbff> 47872
|
261
|
+
<bc00> <bcff> 48128
|
262
|
+
<bd00> <bdff> 48384
|
263
|
+
<be00> <beff> 48640
|
264
|
+
<bf00> <bfff> 48896
|
265
|
+
<c000> <c0ff> 49152
|
266
|
+
<c100> <c1ff> 49408
|
267
|
+
<c200> <c2ff> 49664
|
268
|
+
<c300> <c3ff> 49920
|
269
|
+
<c400> <c4ff> 50176
|
270
|
+
<c500> <c5ff> 50432
|
271
|
+
<c600> <c6ff> 50688
|
272
|
+
<c700> <c7ff> 50944
|
273
|
+
endcidrange
|
274
|
+
|
275
|
+
56 begincidrange
|
276
|
+
<c800> <c8ff> 51200
|
277
|
+
<c900> <c9ff> 51456
|
278
|
+
<ca00> <caff> 51712
|
279
|
+
<cb00> <cbff> 51968
|
280
|
+
<cc00> <ccff> 52224
|
281
|
+
<cd00> <cdff> 52480
|
282
|
+
<ce00> <ceff> 52736
|
283
|
+
<cf00> <cfff> 52992
|
284
|
+
<d000> <d0ff> 53248
|
285
|
+
<d100> <d1ff> 53504
|
286
|
+
<d200> <d2ff> 53760
|
287
|
+
<d300> <d3ff> 54016
|
288
|
+
<d400> <d4ff> 54272
|
289
|
+
<d500> <d5ff> 54528
|
290
|
+
<d600> <d6ff> 54784
|
291
|
+
<d700> <d7ff> 55040
|
292
|
+
<d800> <d8ff> 55296
|
293
|
+
<d900> <d9ff> 55552
|
294
|
+
<da00> <daff> 55808
|
295
|
+
<db00> <dbff> 56064
|
296
|
+
<dc00> <dcff> 56320
|
297
|
+
<dd00> <ddff> 56576
|
298
|
+
<de00> <deff> 56832
|
299
|
+
<df00> <dfff> 57088
|
300
|
+
<e000> <e0ff> 57344
|
301
|
+
<e100> <e1ff> 57600
|
302
|
+
<e200> <e2ff> 57856
|
303
|
+
<e300> <e3ff> 58112
|
304
|
+
<e400> <e4ff> 58368
|
305
|
+
<e500> <e5ff> 58624
|
306
|
+
<e600> <e6ff> 58880
|
307
|
+
<e700> <e7ff> 59136
|
308
|
+
<e800> <e8ff> 59392
|
309
|
+
<e900> <e9ff> 59648
|
310
|
+
<ea00> <eaff> 59904
|
311
|
+
<eb00> <ebff> 60160
|
312
|
+
<ec00> <ecff> 60416
|
313
|
+
<ed00> <edff> 60672
|
314
|
+
<ee00> <eeff> 60928
|
315
|
+
<ef00> <efff> 61184
|
316
|
+
<f000> <f0ff> 61440
|
317
|
+
<f100> <f1ff> 61696
|
318
|
+
<f200> <f2ff> 61952
|
319
|
+
<f300> <f3ff> 62208
|
320
|
+
<f400> <f4ff> 62464
|
321
|
+
<f500> <f5ff> 62720
|
322
|
+
<f600> <f6ff> 62976
|
323
|
+
<f700> <f7ff> 63232
|
324
|
+
<f800> <f8ff> 63488
|
325
|
+
<f900> <f9ff> 63744
|
326
|
+
<fa00> <faff> 64000
|
327
|
+
<fb00> <fbff> 64256
|
328
|
+
<fc00> <fcff> 64512
|
329
|
+
<fd00> <fdff> 64768
|
330
|
+
<fe00> <feff> 65024
|
331
|
+
<ff00> <ffff> 65280
|
332
|
+
endcidrange
|
333
|
+
endcmap
|
334
|
+
CMapName currentdict /CMap defineresource pop
|
335
|
+
end
|
336
|
+
end
|
337
|
+
|
338
|
+
%%EndResource
|
339
|
+
%%EOF
|
@@ -0,0 +1,73 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%IncludeResource: ProcSet (CIDInit)
|
4
|
+
%%BeginResource: CMap (Identity-V)
|
5
|
+
%%Title: (Identity-V Adobe Identity 0)
|
6
|
+
%%Version: 10.005
|
7
|
+
%%Copyright: -----------------------------------------------------------
|
8
|
+
%%Copyright: Copyright 1990-2015 Adobe Systems Incorporated.
|
9
|
+
%%Copyright: All rights reserved.
|
10
|
+
%%Copyright:
|
11
|
+
%%Copyright: Redistribution and use in source and binary forms, with or
|
12
|
+
%%Copyright: without modification, are permitted provided that the
|
13
|
+
%%Copyright: following conditions are met:
|
14
|
+
%%Copyright:
|
15
|
+
%%Copyright: Redistributions of source code must retain the above
|
16
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
17
|
+
%%Copyright: disclaimer.
|
18
|
+
%%Copyright:
|
19
|
+
%%Copyright: Redistributions in binary form must reproduce the above
|
20
|
+
%%Copyright: copyright notice, this list of conditions and the following
|
21
|
+
%%Copyright: disclaimer in the documentation and/or other materials
|
22
|
+
%%Copyright: provided with the distribution.
|
23
|
+
%%Copyright:
|
24
|
+
%%Copyright: Neither the name of Adobe Systems Incorporated nor the names
|
25
|
+
%%Copyright: of its contributors may be used to endorse or promote
|
26
|
+
%%Copyright: products derived from this software without specific prior
|
27
|
+
%%Copyright: written permission.
|
28
|
+
%%Copyright:
|
29
|
+
%%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
30
|
+
%%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
31
|
+
%%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
32
|
+
%%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
33
|
+
%%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
34
|
+
%%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
35
|
+
%%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
36
|
+
%%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
37
|
+
%%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
38
|
+
%%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
39
|
+
%%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
40
|
+
%%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
41
|
+
%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
42
|
+
%%Copyright: -----------------------------------------------------------
|
43
|
+
%%EndComments
|
44
|
+
|
45
|
+
/CIDInit /ProcSet findresource begin
|
46
|
+
|
47
|
+
12 dict begin
|
48
|
+
|
49
|
+
begincmap
|
50
|
+
|
51
|
+
/CIDSystemInfo 3 dict dup begin
|
52
|
+
/Registry (Adobe) def
|
53
|
+
/Ordering (Identity) def
|
54
|
+
/Supplement 0 def
|
55
|
+
end def
|
56
|
+
|
57
|
+
/CMapName /Identity-V def
|
58
|
+
/CMapVersion 10.005 def
|
59
|
+
/CMapType 1 def
|
60
|
+
|
61
|
+
/XUID [1 10 25404 9991] def
|
62
|
+
|
63
|
+
/WMode 1 def
|
64
|
+
|
65
|
+
/Identity-H usecmap
|
66
|
+
|
67
|
+
endcmap
|
68
|
+
CMapName currentdict /CMap defineresource pop
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
%%EndResource
|
73
|
+
%%EOF
|