OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "../../../../include/fpdfapi/fpdf_resource.h" | 7 #include "cmaps_cns1.h" |
8 #include "../../../../include/fpdfapi/fpdf_module.h" | 8 |
9 #include "../../../../include/fxcrt/fx_basic.h" // For FX_ArraySize(). | |
10 #include "../../fpdf_font/font_int.h" | 9 #include "../../fpdf_font/font_int.h" |
11 #include "../cmap_int.h" | 10 #include "../cmap_int.h" |
12 #include "cmaps_cns1.h" | 11 #include "core/include/fpdfapi/fpdf_module.h" |
| 12 #include "core/include/fpdfapi/fpdf_resource.h" |
| 13 #include "core/include/fxcrt/fx_basic.h" // For FX_ArraySize(). |
13 | 14 |
14 static const FXCMAP_CMap g_FXCMAP_CNS1_cmaps[] = { | 15 static const FXCMAP_CMap g_FXCMAP_CNS1_cmaps[] = { |
15 {"B5pc-H", FXCMAP_CMap::Range, g_FXCMAP_B5pc_H_0, 247, FXCMAP_CMap::None, | 16 {"B5pc-H", FXCMAP_CMap::Range, g_FXCMAP_B5pc_H_0, 247, FXCMAP_CMap::None, |
16 NULL, 0, 0}, | 17 NULL, 0, 0}, |
17 {"B5pc-V", FXCMAP_CMap::Range, g_FXCMAP_B5pc_V_0, 12, FXCMAP_CMap::None, | 18 {"B5pc-V", FXCMAP_CMap::Range, g_FXCMAP_B5pc_V_0, 12, FXCMAP_CMap::None, |
18 NULL, 0, -1}, | 19 NULL, 0, -1}, |
19 {"HKscs-B5-H", FXCMAP_CMap::Range, g_FXCMAP_HKscs_B5_H_5, 1210, | 20 {"HKscs-B5-H", FXCMAP_CMap::Range, g_FXCMAP_HKscs_B5_H_5, 1210, |
20 FXCMAP_CMap::None, NULL, 0, 0}, | 21 FXCMAP_CMap::None, NULL, 0, 0}, |
21 {"HKscs-B5-V", FXCMAP_CMap::Range, g_FXCMAP_HKscs_B5_V_5, 13, | 22 {"HKscs-B5-V", FXCMAP_CMap::Range, g_FXCMAP_HKscs_B5_V_5, 13, |
22 FXCMAP_CMap::None, NULL, 0, -1}, | 23 FXCMAP_CMap::None, NULL, 0, -1}, |
(...skipping 23 matching lines...) Expand all Loading... |
46 CPDF_FontGlobals* pFontGlobals = | 47 CPDF_FontGlobals* pFontGlobals = |
47 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); | 48 CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); |
48 pFontGlobals->m_EmbeddedCharsets[CIDSET_CNS1].m_pMapList = | 49 pFontGlobals->m_EmbeddedCharsets[CIDSET_CNS1].m_pMapList = |
49 g_FXCMAP_CNS1_cmaps; | 50 g_FXCMAP_CNS1_cmaps; |
50 pFontGlobals->m_EmbeddedCharsets[CIDSET_CNS1].m_Count = | 51 pFontGlobals->m_EmbeddedCharsets[CIDSET_CNS1].m_Count = |
51 FX_ArraySize(g_FXCMAP_CNS1_cmaps); | 52 FX_ArraySize(g_FXCMAP_CNS1_cmaps); |
52 pFontGlobals->m_EmbeddedToUnicodes[CIDSET_CNS1].m_pMap = | 53 pFontGlobals->m_EmbeddedToUnicodes[CIDSET_CNS1].m_pMap = |
53 g_FXCMAP_CNS1CID2Unicode_5; | 54 g_FXCMAP_CNS1CID2Unicode_5; |
54 pFontGlobals->m_EmbeddedToUnicodes[CIDSET_CNS1].m_Count = 19088; | 55 pFontGlobals->m_EmbeddedToUnicodes[CIDSET_CNS1].m_Count = 19088; |
55 } | 56 } |
OLD | NEW |