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 "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h" | 7 #include "core/fpdfapi/fpdf_parser/include/fpdf_parser_decode.h" |
8 #include "core/include/fpdfapi/fpdf_page.h" | |
9 #include "core/include/fpdfapi/fpdf_resource.h" | 8 #include "core/include/fpdfapi/fpdf_resource.h" |
10 #include "core/include/fxge/fx_freetype.h" | 9 #include "core/include/fxge/fx_freetype.h" |
11 | 10 |
12 static const struct _UnicodeAlt { | 11 static const struct _UnicodeAlt { |
13 FX_WORD m_Unicode; | 12 FX_WORD m_Unicode; |
14 const FX_CHAR* m_Alter; | 13 const FX_CHAR* m_Alter; |
15 } UnicodeAlts[] = { | 14 } UnicodeAlts[] = { |
16 {0x00a0, " "}, {0x00a1, "!"}, {0x00a2, "c"}, {0x00a3, "P"}, | 15 {0x00a0, " "}, {0x00a1, "!"}, {0x00a2, "c"}, {0x00a3, "P"}, |
17 {0x00a4, "o"}, {0x00a5, "Y"}, {0x00a6, "|"}, {0x00a7, "S"}, | 16 {0x00a4, "o"}, {0x00a5, "Y"}, {0x00a6, "|"}, {0x00a7, "S"}, |
18 {0x00a9, "(C)"}, {0x00aa, "a"}, {0x00ab, "<<"}, {0x00ac, "-|"}, | 17 {0x00a9, "(C)"}, {0x00aa, "a"}, {0x00ab, "<<"}, {0x00ac, "-|"}, |
(...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1773 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode); | 1772 return PDF_FindCode(PDF_UnicodesForPredefinedCharSet(encoding), unicode); |
1774 } | 1773 } |
1775 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) { | 1774 FX_WCHAR PDF_UnicodeFromAdobeName(const FX_CHAR* name) { |
1776 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF); | 1775 return (FX_WCHAR)(FXFT_unicode_from_adobe_name(name) & 0x7FFFFFFF); |
1777 } | 1776 } |
1778 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) { | 1777 CFX_ByteString PDF_AdobeNameFromUnicode(FX_WCHAR unicode) { |
1779 char glyph_name[64]; | 1778 char glyph_name[64]; |
1780 FXFT_adobe_name_from_unicode(glyph_name, unicode); | 1779 FXFT_adobe_name_from_unicode(glyph_name, unicode); |
1781 return CFX_ByteString(glyph_name); | 1780 return CFX_ByteString(glyph_name); |
1782 } | 1781 } |
OLD | NEW |