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,81 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%DocumentNeededResources: CMap (UniJIS-UCS2-H)
|
4
|
+
%%IncludeResource: ProcSet (CIDInit)
|
5
|
+
%%IncludeResource: CMap (UniJIS-UCS2-H)
|
6
|
+
%%BeginResource: CMap (UniJIS-UCS2-HW-H)
|
7
|
+
%%Title: (UniJIS-UCS2-HW-H Adobe Japan1 4)
|
8
|
+
%%Version: 12.004
|
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
|
+
/UniJIS-UCS2-H usecmap
|
54
|
+
|
55
|
+
/CIDSystemInfo 3 dict dup begin
|
56
|
+
/Registry (Adobe) def
|
57
|
+
/Ordering (Japan1) def
|
58
|
+
/Supplement 4 def
|
59
|
+
end def
|
60
|
+
|
61
|
+
/CMapName /UniJIS-UCS2-HW-H def
|
62
|
+
/CMapVersion 12.004 def
|
63
|
+
/CMapType 1 def
|
64
|
+
|
65
|
+
/XUID [1 10 25448] def
|
66
|
+
|
67
|
+
/WMode 0 def
|
68
|
+
|
69
|
+
4 begincidrange
|
70
|
+
<0020> <005b> 231
|
71
|
+
<005c> <005c> 8719
|
72
|
+
<005d> <007e> 292
|
73
|
+
<00a5> <00a5> 291
|
74
|
+
endcidrange
|
75
|
+
endcmap
|
76
|
+
CMapName currentdict /CMap defineresource pop
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
%%EndResource
|
81
|
+
%%EOF
|
@@ -0,0 +1,279 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%DocumentNeededResources: CMap (UniJIS-UCS2-H)
|
4
|
+
%%IncludeResource: ProcSet (CIDInit)
|
5
|
+
%%IncludeResource: CMap (UniJIS-UCS2-H)
|
6
|
+
%%BeginResource: CMap (UniJIS-UCS2-HW-V)
|
7
|
+
%%Title: (UniJIS-UCS2-HW-V Adobe Japan1 4)
|
8
|
+
%%Version: 12.005
|
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
|
+
/UniJIS-UCS2-H usecmap
|
54
|
+
|
55
|
+
/CIDSystemInfo 3 dict dup begin
|
56
|
+
/Registry (Adobe) def
|
57
|
+
/Ordering (Japan1) def
|
58
|
+
/Supplement 4 def
|
59
|
+
end def
|
60
|
+
|
61
|
+
/CMapName /UniJIS-UCS2-HW-V def
|
62
|
+
/CMapVersion 12.005 def
|
63
|
+
/CMapType 1 def
|
64
|
+
|
65
|
+
/XUID [1 10 25449] def
|
66
|
+
|
67
|
+
/WMode 1 def
|
68
|
+
|
69
|
+
100 begincidrange
|
70
|
+
<0020> <005b> 231
|
71
|
+
<005c> <005c> 8719
|
72
|
+
<005d> <007e> 292
|
73
|
+
<00a5> <00a5> 291
|
74
|
+
<00b0> <00b0> 8269
|
75
|
+
<2010> <2010> 7893
|
76
|
+
<2015> <2015> 7892
|
77
|
+
<2016> <2016> 7895
|
78
|
+
<2018> <2019> 8281
|
79
|
+
<201c> <201d> 8279
|
80
|
+
<2025> <2025> 7898
|
81
|
+
<2026> <2026> 7897
|
82
|
+
<2032> <2032> 8273
|
83
|
+
<2033> <2033> 8283
|
84
|
+
<2190> <2190> 738
|
85
|
+
<2191> <2191> 736
|
86
|
+
<2192> <2192> 739
|
87
|
+
<2193> <2193> 737
|
88
|
+
<2195> <2195> 12214
|
89
|
+
<21c4> <21c4> 8311
|
90
|
+
<21c5> <21c5> 8310
|
91
|
+
<21c6> <21c6> 8312
|
92
|
+
<21e6> <21e6> 8012
|
93
|
+
<21e7> <21e7> 8014
|
94
|
+
<21e8> <21e8> 8011
|
95
|
+
<21e9> <21e9> 8013
|
96
|
+
<2225> <2225> 7895
|
97
|
+
<223c> <223c> 7894
|
98
|
+
<22ef> <22ef> 7897
|
99
|
+
<2500> <2501> 7481
|
100
|
+
<2502> <2503> 7479
|
101
|
+
<2504> <2505> 7485
|
102
|
+
<2506> <2507> 7483
|
103
|
+
<2508> <2509> 7489
|
104
|
+
<250a> <250b> 7487
|
105
|
+
<250c> <250c> 7495
|
106
|
+
<250d> <250d> 7497
|
107
|
+
<250e> <250e> 7496
|
108
|
+
<250f> <250f> 7498
|
109
|
+
<2510> <2510> 7503
|
110
|
+
<2511> <2511> 7505
|
111
|
+
<2512> <2512> 7504
|
112
|
+
<2513> <2513> 7506
|
113
|
+
<2514> <2514> 7491
|
114
|
+
<2515> <2515> 7493
|
115
|
+
<2516> <2516> 7492
|
116
|
+
<2517> <2517> 7494
|
117
|
+
<2518> <2518> 7499
|
118
|
+
<2519> <2519> 7501
|
119
|
+
<251a> <251a> 7500
|
120
|
+
<251b> <251b> 7502
|
121
|
+
<251c> <251c> 7523
|
122
|
+
<251d> <251d> 7527
|
123
|
+
<251e> <251e> 7525
|
124
|
+
<251f> <251f> 7524
|
125
|
+
<2520> <2520> 7526
|
126
|
+
<2521> <2521> 7529
|
127
|
+
<2522> <2522> 7528
|
128
|
+
<2523> <2524> 7530
|
129
|
+
<2525> <2525> 7535
|
130
|
+
<2526> <2526> 7533
|
131
|
+
<2527> <2527> 7532
|
132
|
+
<2528> <2528> 7534
|
133
|
+
<2529> <2529> 7537
|
134
|
+
<252a> <252a> 7536
|
135
|
+
<252b> <252b> 7538
|
136
|
+
<252c> <252c> 7515
|
137
|
+
<252d> <252f> 7517
|
138
|
+
<2530> <2530> 7516
|
139
|
+
<2531> <2533> 7520
|
140
|
+
<2534> <2534> 7507
|
141
|
+
<2535> <2537> 7509
|
142
|
+
<2538> <2538> 7508
|
143
|
+
<2539> <253b> 7512
|
144
|
+
<253d> <253f> 7543
|
145
|
+
<2540> <2540> 7541
|
146
|
+
<2541> <2541> 7540
|
147
|
+
<2542> <2542> 7542
|
148
|
+
<2543> <2543> 7547
|
149
|
+
<2544> <2544> 7549
|
150
|
+
<2545> <2545> 7546
|
151
|
+
<2546> <2546> 7548
|
152
|
+
<2547> <2547> 7553
|
153
|
+
<2548> <2548> 7552
|
154
|
+
<2549> <254a> 7550
|
155
|
+
<261c> <261c> 8221
|
156
|
+
<261d> <261d> 8219
|
157
|
+
<261e> <261e> 8222
|
158
|
+
<261f> <261f> 8220
|
159
|
+
<2702> <2702> 12178
|
160
|
+
<27a1> <27a1> 8209
|
161
|
+
<3001> <3002> 7887
|
162
|
+
<3008> <3011> 7907
|
163
|
+
<3013> <3013> 8270
|
164
|
+
<3014> <3015> 7901
|
165
|
+
<301c> <301c> 7894
|
166
|
+
<301d> <301d> 7956
|
167
|
+
<301f> <301f> 7957
|
168
|
+
<3041> <3041> 7918
|
169
|
+
<3043> <3043> 7919
|
170
|
+
endcidrange
|
171
|
+
|
172
|
+
99 begincidrange
|
173
|
+
<3045> <3045> 7920
|
174
|
+
<3047> <3047> 7921
|
175
|
+
<3049> <3049> 7922
|
176
|
+
<3063> <3063> 7923
|
177
|
+
<3083> <3083> 7924
|
178
|
+
<3085> <3085> 7925
|
179
|
+
<3087> <3087> 7926
|
180
|
+
<308e> <308e> 7927
|
181
|
+
<309b> <309b> 8272
|
182
|
+
<309c> <309c> 8271
|
183
|
+
<30a1> <30a1> 7928
|
184
|
+
<30a3> <30a3> 7929
|
185
|
+
<30a5> <30a5> 7930
|
186
|
+
<30a7> <30a7> 7931
|
187
|
+
<30a9> <30a9> 7932
|
188
|
+
<30c3> <30c3> 7933
|
189
|
+
<30e3> <30e3> 7934
|
190
|
+
<30e5> <30e5> 7935
|
191
|
+
<30e7> <30e7> 7936
|
192
|
+
<30ee> <30ee> 7937
|
193
|
+
<30f5> <30f6> 7938
|
194
|
+
<30fc> <30fc> 7891
|
195
|
+
<3300> <3300> 8350
|
196
|
+
<3301> <3302> 11958
|
197
|
+
<3303> <3303> 8338
|
198
|
+
<3304> <3304> 11960
|
199
|
+
<3305> <3305> 8333
|
200
|
+
<3306> <3306> 11961
|
201
|
+
<3307> <3307> 11965
|
202
|
+
<3308> <3308> 11963
|
203
|
+
<3309> <3309> 11968
|
204
|
+
<330a> <330a> 11966
|
205
|
+
<330b> <330b> 11970
|
206
|
+
<330c> <330c> 11972
|
207
|
+
<330d> <330d> 7950
|
208
|
+
<330e> <3313> 11973
|
209
|
+
<3314> <3314> 7941
|
210
|
+
<3315> <3315> 8340
|
211
|
+
<3316> <3316> 8330
|
212
|
+
<3317> <3317> 11980
|
213
|
+
<3318> <3318> 8339
|
214
|
+
<3319> <3319> 11982
|
215
|
+
<331a> <331d> 11984
|
216
|
+
<331e> <331e> 8353
|
217
|
+
<331f> <3321> 11988
|
218
|
+
<3322> <3322> 8329
|
219
|
+
<3323> <3323> 8348
|
220
|
+
<3324> <3324> 11991
|
221
|
+
<3325> <3325> 11993
|
222
|
+
<3326> <3326> 7951
|
223
|
+
<3327> <3327> 7945
|
224
|
+
<3328> <3329> 11996
|
225
|
+
<332a> <332a> 8356
|
226
|
+
<332b> <332b> 7953
|
227
|
+
<332d> <332d> 11999
|
228
|
+
<332e> <3330> 12002
|
229
|
+
<3331> <3331> 8358
|
230
|
+
<3332> <3332> 12005
|
231
|
+
<3333> <3333> 8334
|
232
|
+
<3334> <3335> 12008
|
233
|
+
<3336> <3336> 7947
|
234
|
+
<3337> <3337> 12014
|
235
|
+
<3338> <3338> 12016
|
236
|
+
<3339> <3339> 8343
|
237
|
+
<333a> <333a> 12017
|
238
|
+
<333b> <333b> 8349
|
239
|
+
<333c> <333c> 12010
|
240
|
+
<333d> <333d> 12018
|
241
|
+
<333e> <3340> 12020
|
242
|
+
<3341> <3341> 12019
|
243
|
+
<3342> <3342> 8347
|
244
|
+
<3343> <3346> 12023
|
245
|
+
<3347> <3347> 8357
|
246
|
+
<3348> <3348> 12027
|
247
|
+
<3349> <3349> 7940
|
248
|
+
<334a> <334a> 7954
|
249
|
+
<334b> <334c> 12028
|
250
|
+
<334d> <334d> 7943
|
251
|
+
<334e> <334e> 8337
|
252
|
+
<334f> <3350> 12030
|
253
|
+
<3351> <3351> 7948
|
254
|
+
<3352> <3352> 12034
|
255
|
+
<3353> <3353> 12038
|
256
|
+
<3354> <3354> 12035
|
257
|
+
<3355> <3356> 12039
|
258
|
+
<3357> <3357> 8344
|
259
|
+
<337f> <337f> 8324
|
260
|
+
<ff08> <ff09> 7899
|
261
|
+
<ff0c> <ff0c> 8268
|
262
|
+
<ff0e> <ff0e> 8274
|
263
|
+
<ff1d> <ff1d> 7917
|
264
|
+
<ff3b> <ff3b> 7903
|
265
|
+
<ff3d> <ff3d> 7904
|
266
|
+
<ff3f> <ff3f> 7890
|
267
|
+
<ff5b> <ff5b> 7905
|
268
|
+
<ff5c> <ff5c> 7896
|
269
|
+
<ff5d> <ff5d> 7906
|
270
|
+
<ff5e> <ff5e> 7894
|
271
|
+
<ffe3> <ffe3> 7889
|
272
|
+
endcidrange
|
273
|
+
endcmap
|
274
|
+
CMapName currentdict /CMap defineresource pop
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
%%EndResource
|
279
|
+
%%EOF
|
@@ -0,0 +1,275 @@
|
|
1
|
+
%!PS-Adobe-3.0 Resource-CMap
|
2
|
+
%%DocumentNeededResources: ProcSet (CIDInit)
|
3
|
+
%%DocumentNeededResources: CMap (UniJIS-UCS2-H)
|
4
|
+
%%IncludeResource: ProcSet (CIDInit)
|
5
|
+
%%IncludeResource: CMap (UniJIS-UCS2-H)
|
6
|
+
%%BeginResource: CMap (UniJIS-UCS2-V)
|
7
|
+
%%Title: (UniJIS-UCS2-V Adobe Japan1 4)
|
8
|
+
%%Version: 12.005
|
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
|
+
/UniJIS-UCS2-H usecmap
|
54
|
+
|
55
|
+
/CIDSystemInfo 3 dict dup begin
|
56
|
+
/Registry (Adobe) def
|
57
|
+
/Ordering (Japan1) def
|
58
|
+
/Supplement 4 def
|
59
|
+
end def
|
60
|
+
|
61
|
+
/CMapName /UniJIS-UCS2-V def
|
62
|
+
/CMapVersion 12.005 def
|
63
|
+
/CMapType 1 def
|
64
|
+
|
65
|
+
/XUID [1 10 25357] def
|
66
|
+
|
67
|
+
/WMode 1 def
|
68
|
+
|
69
|
+
100 begincidrange
|
70
|
+
<00b0> <00b0> 8269
|
71
|
+
<2010> <2010> 7893
|
72
|
+
<2015> <2015> 7892
|
73
|
+
<2016> <2016> 7895
|
74
|
+
<2018> <2019> 8281
|
75
|
+
<201c> <201d> 8279
|
76
|
+
<2025> <2025> 7898
|
77
|
+
<2026> <2026> 7897
|
78
|
+
<2032> <2032> 8273
|
79
|
+
<2033> <2033> 8283
|
80
|
+
<2190> <2190> 738
|
81
|
+
<2191> <2191> 736
|
82
|
+
<2192> <2192> 739
|
83
|
+
<2193> <2193> 737
|
84
|
+
<2195> <2195> 12214
|
85
|
+
<21c4> <21c4> 8311
|
86
|
+
<21c5> <21c5> 8310
|
87
|
+
<21c6> <21c6> 8312
|
88
|
+
<21e6> <21e6> 8012
|
89
|
+
<21e7> <21e7> 8014
|
90
|
+
<21e8> <21e8> 8011
|
91
|
+
<21e9> <21e9> 8013
|
92
|
+
<2225> <2225> 7895
|
93
|
+
<223c> <223c> 7894
|
94
|
+
<22ef> <22ef> 7897
|
95
|
+
<2500> <2501> 7481
|
96
|
+
<2502> <2503> 7479
|
97
|
+
<2504> <2505> 7485
|
98
|
+
<2506> <2507> 7483
|
99
|
+
<2508> <2509> 7489
|
100
|
+
<250a> <250b> 7487
|
101
|
+
<250c> <250c> 7495
|
102
|
+
<250d> <250d> 7497
|
103
|
+
<250e> <250e> 7496
|
104
|
+
<250f> <250f> 7498
|
105
|
+
<2510> <2510> 7503
|
106
|
+
<2511> <2511> 7505
|
107
|
+
<2512> <2512> 7504
|
108
|
+
<2513> <2513> 7506
|
109
|
+
<2514> <2514> 7491
|
110
|
+
<2515> <2515> 7493
|
111
|
+
<2516> <2516> 7492
|
112
|
+
<2517> <2517> 7494
|
113
|
+
<2518> <2518> 7499
|
114
|
+
<2519> <2519> 7501
|
115
|
+
<251a> <251a> 7500
|
116
|
+
<251b> <251b> 7502
|
117
|
+
<251c> <251c> 7523
|
118
|
+
<251d> <251d> 7527
|
119
|
+
<251e> <251e> 7525
|
120
|
+
<251f> <251f> 7524
|
121
|
+
<2520> <2520> 7526
|
122
|
+
<2521> <2521> 7529
|
123
|
+
<2522> <2522> 7528
|
124
|
+
<2523> <2524> 7530
|
125
|
+
<2525> <2525> 7535
|
126
|
+
<2526> <2526> 7533
|
127
|
+
<2527> <2527> 7532
|
128
|
+
<2528> <2528> 7534
|
129
|
+
<2529> <2529> 7537
|
130
|
+
<252a> <252a> 7536
|
131
|
+
<252b> <252b> 7538
|
132
|
+
<252c> <252c> 7515
|
133
|
+
<252d> <252f> 7517
|
134
|
+
<2530> <2530> 7516
|
135
|
+
<2531> <2533> 7520
|
136
|
+
<2534> <2534> 7507
|
137
|
+
<2535> <2537> 7509
|
138
|
+
<2538> <2538> 7508
|
139
|
+
<2539> <253b> 7512
|
140
|
+
<253d> <253f> 7543
|
141
|
+
<2540> <2540> 7541
|
142
|
+
<2541> <2541> 7540
|
143
|
+
<2542> <2542> 7542
|
144
|
+
<2543> <2543> 7547
|
145
|
+
<2544> <2544> 7549
|
146
|
+
<2545> <2545> 7546
|
147
|
+
<2546> <2546> 7548
|
148
|
+
<2547> <2547> 7553
|
149
|
+
<2548> <2548> 7552
|
150
|
+
<2549> <254a> 7550
|
151
|
+
<261c> <261c> 8221
|
152
|
+
<261d> <261d> 8219
|
153
|
+
<261e> <261e> 8222
|
154
|
+
<261f> <261f> 8220
|
155
|
+
<2702> <2702> 12178
|
156
|
+
<27a1> <27a1> 8209
|
157
|
+
<3001> <3002> 7887
|
158
|
+
<3008> <3011> 7907
|
159
|
+
<3013> <3013> 8270
|
160
|
+
<3014> <3015> 7901
|
161
|
+
<301c> <301c> 7894
|
162
|
+
<301d> <301d> 7956
|
163
|
+
<301f> <301f> 7957
|
164
|
+
<3041> <3041> 7918
|
165
|
+
<3043> <3043> 7919
|
166
|
+
<3045> <3045> 7920
|
167
|
+
<3047> <3047> 7921
|
168
|
+
<3049> <3049> 7922
|
169
|
+
<3063> <3063> 7923
|
170
|
+
endcidrange
|
171
|
+
|
172
|
+
95 begincidrange
|
173
|
+
<3083> <3083> 7924
|
174
|
+
<3085> <3085> 7925
|
175
|
+
<3087> <3087> 7926
|
176
|
+
<308e> <308e> 7927
|
177
|
+
<309b> <309b> 8272
|
178
|
+
<309c> <309c> 8271
|
179
|
+
<30a1> <30a1> 7928
|
180
|
+
<30a3> <30a3> 7929
|
181
|
+
<30a5> <30a5> 7930
|
182
|
+
<30a7> <30a7> 7931
|
183
|
+
<30a9> <30a9> 7932
|
184
|
+
<30c3> <30c3> 7933
|
185
|
+
<30e3> <30e3> 7934
|
186
|
+
<30e5> <30e5> 7935
|
187
|
+
<30e7> <30e7> 7936
|
188
|
+
<30ee> <30ee> 7937
|
189
|
+
<30f5> <30f6> 7938
|
190
|
+
<30fc> <30fc> 7891
|
191
|
+
<3300> <3300> 8350
|
192
|
+
<3301> <3302> 11958
|
193
|
+
<3303> <3303> 8338
|
194
|
+
<3304> <3304> 11960
|
195
|
+
<3305> <3305> 8333
|
196
|
+
<3306> <3306> 11961
|
197
|
+
<3307> <3307> 11965
|
198
|
+
<3308> <3308> 11963
|
199
|
+
<3309> <3309> 11968
|
200
|
+
<330a> <330a> 11966
|
201
|
+
<330b> <330b> 11970
|
202
|
+
<330c> <330c> 11972
|
203
|
+
<330d> <330d> 7950
|
204
|
+
<330e> <3313> 11973
|
205
|
+
<3314> <3314> 7941
|
206
|
+
<3315> <3315> 8340
|
207
|
+
<3316> <3316> 8330
|
208
|
+
<3317> <3317> 11980
|
209
|
+
<3318> <3318> 8339
|
210
|
+
<3319> <3319> 11982
|
211
|
+
<331a> <331d> 11984
|
212
|
+
<331e> <331e> 8353
|
213
|
+
<331f> <3321> 11988
|
214
|
+
<3322> <3322> 8329
|
215
|
+
<3323> <3323> 8348
|
216
|
+
<3324> <3324> 11991
|
217
|
+
<3325> <3325> 11993
|
218
|
+
<3326> <3326> 7951
|
219
|
+
<3327> <3327> 7945
|
220
|
+
<3328> <3329> 11996
|
221
|
+
<332a> <332a> 8356
|
222
|
+
<332b> <332b> 7953
|
223
|
+
<332d> <332d> 11999
|
224
|
+
<332e> <3330> 12002
|
225
|
+
<3331> <3331> 8358
|
226
|
+
<3332> <3332> 12005
|
227
|
+
<3333> <3333> 8334
|
228
|
+
<3334> <3335> 12008
|
229
|
+
<3336> <3336> 7947
|
230
|
+
<3337> <3337> 12014
|
231
|
+
<3338> <3338> 12016
|
232
|
+
<3339> <3339> 8343
|
233
|
+
<333a> <333a> 12017
|
234
|
+
<333b> <333b> 8349
|
235
|
+
<333c> <333c> 12010
|
236
|
+
<333d> <333d> 12018
|
237
|
+
<333e> <3340> 12020
|
238
|
+
<3341> <3341> 12019
|
239
|
+
<3342> <3342> 8347
|
240
|
+
<3343> <3346> 12023
|
241
|
+
<3347> <3347> 8357
|
242
|
+
<3348> <3348> 12027
|
243
|
+
<3349> <3349> 7940
|
244
|
+
<334a> <334a> 7954
|
245
|
+
<334b> <334c> 12028
|
246
|
+
<334d> <334d> 7943
|
247
|
+
<334e> <334e> 8337
|
248
|
+
<334f> <3350> 12030
|
249
|
+
<3351> <3351> 7948
|
250
|
+
<3352> <3352> 12034
|
251
|
+
<3353> <3353> 12038
|
252
|
+
<3354> <3354> 12035
|
253
|
+
<3355> <3356> 12039
|
254
|
+
<3357> <3357> 8344
|
255
|
+
<337f> <337f> 8324
|
256
|
+
<ff08> <ff09> 7899
|
257
|
+
<ff0c> <ff0c> 8268
|
258
|
+
<ff0e> <ff0e> 8274
|
259
|
+
<ff1d> <ff1d> 7917
|
260
|
+
<ff3b> <ff3b> 7903
|
261
|
+
<ff3d> <ff3d> 7904
|
262
|
+
<ff3f> <ff3f> 7890
|
263
|
+
<ff5b> <ff5b> 7905
|
264
|
+
<ff5c> <ff5c> 7896
|
265
|
+
<ff5d> <ff5d> 7906
|
266
|
+
<ff5e> <ff5e> 7894
|
267
|
+
<ffe3> <ffe3> 7889
|
268
|
+
endcidrange
|
269
|
+
endcmap
|
270
|
+
CMapName currentdict /CMap defineresource pop
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
%%EndResource
|
275
|
+
%%EOF
|