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/cfdf_document.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" |
8 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 8 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" |
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1058 DA = m_pForm->m_pFormDict->GetStringBy("DA"); | 1058 DA = m_pForm->m_pFormDict->GetStringBy("DA"); |
1059 } | 1059 } |
1060 if (DA.IsEmpty()) { | 1060 if (DA.IsEmpty()) { |
1061 return; | 1061 return; |
1062 } | 1062 } |
1063 CPDF_SimpleParser syntax(DA.AsStringC()); | 1063 CPDF_SimpleParser syntax(DA.AsStringC()); |
1064 syntax.FindTagParamFromStart("Tf", 2); | 1064 syntax.FindTagParamFromStart("Tf", 2); |
1065 CFX_ByteString font_name = syntax.GetWord(); | 1065 CFX_ByteString font_name = syntax.GetWord(); |
1066 CPDF_Dictionary* pFontDict = NULL; | 1066 CPDF_Dictionary* pFontDict = NULL; |
1067 if (m_pForm->m_pFormDict && m_pForm->m_pFormDict->GetDictBy("DR") && | 1067 if (m_pForm->m_pFormDict && m_pForm->m_pFormDict->GetDictBy("DR") && |
1068 m_pForm->m_pFormDict->GetDictBy("DR")->GetDictBy("Font")) | 1068 m_pForm->m_pFormDict->GetDictBy("DR")->GetDictBy("Font")) { |
1069 pFontDict = m_pForm->m_pFormDict->GetDictBy("DR") | 1069 pFontDict = m_pForm->m_pFormDict->GetDictBy("DR") |
1070 ->GetDictBy("Font") | 1070 ->GetDictBy("Font") |
1071 ->GetDictBy(font_name.AsStringC()); | 1071 ->GetDictBy(font_name); |
1072 | 1072 } |
1073 if (!pFontDict) { | 1073 if (!pFontDict) { |
1074 return; | 1074 return; |
1075 } | 1075 } |
1076 m_pFont = m_pForm->m_pDocument->LoadFont(pFontDict); | 1076 m_pFont = m_pForm->m_pDocument->LoadFont(pFontDict); |
1077 m_FontSize = FX_atof(syntax.GetWord()); | 1077 m_FontSize = FX_atof(syntax.GetWord()); |
1078 } | 1078 } |
OLD | NEW |