| 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_page.h" | 7 #include "../../../include/fpdfapi/fpdf_page.h" |
| 8 #include "../../../include/fpdfapi/fpdf_module.h" | 8 #include "../../../include/fpdfapi/fpdf_module.h" |
| 9 #include "../fpdf_page/pageint.h" | 9 #include "../fpdf_page/pageint.h" |
| 10 #include <limits.h> | 10 #include <limits.h> |
| (...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 FX_DWORD dwObjNum = AddIndirectObject(pDict); | 1102 FX_DWORD dwObjNum = AddIndirectObject(pDict); |
| 1103 if (InsertNewPage(this, iPage, pDict, m_PageList) < 0) { | 1103 if (InsertNewPage(this, iPage, pDict, m_PageList) < 0) { |
| 1104 ReleaseIndirectObject(dwObjNum); | 1104 ReleaseIndirectObject(dwObjNum); |
| 1105 return NULL; | 1105 return NULL; |
| 1106 } | 1106 } |
| 1107 return pDict; | 1107 return pDict; |
| 1108 } | 1108 } |
| 1109 | 1109 |
| 1110 CPDF_Font* CPDF_Document::AddStandardFont(const FX_CHAR* font, | 1110 CPDF_Font* CPDF_Document::AddStandardFont(const FX_CHAR* font, |
| 1111 CPDF_FontEncoding* pEncoding) { | 1111 CPDF_FontEncoding* pEncoding) { |
| 1112 CFX_ByteString name(font, -1); | 1112 CFX_ByteString name(font); |
| 1113 if (PDF_GetStandardFontName(&name) < 0) | 1113 if (PDF_GetStandardFontName(&name) < 0) |
| 1114 return nullptr; | 1114 return nullptr; |
| 1115 return GetPageData()->GetStandardFont(name, pEncoding); | 1115 return GetPageData()->GetStandardFont(name, pEncoding); |
| 1116 } | 1116 } |
| 1117 | 1117 |
| 1118 void CPDF_Document::DeletePage(int iPage) { | 1118 void CPDF_Document::DeletePage(int iPage) { |
| 1119 CPDF_Dictionary* pRoot = GetRoot(); | 1119 CPDF_Dictionary* pRoot = GetRoot(); |
| 1120 if (pRoot == NULL) { | 1120 if (pRoot == NULL) { |
| 1121 return; | 1121 return; |
| 1122 } | 1122 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1140 void FPDFAPI_FlatPageAttr(CPDF_Dictionary* pPageDict, | 1140 void FPDFAPI_FlatPageAttr(CPDF_Dictionary* pPageDict, |
| 1141 const CFX_ByteStringC& name) { | 1141 const CFX_ByteStringC& name) { |
| 1142 if (pPageDict->KeyExist(name)) { | 1142 if (pPageDict->KeyExist(name)) { |
| 1143 return; | 1143 return; |
| 1144 } | 1144 } |
| 1145 CPDF_Object* pObj = FPDFAPI_GetPageAttr(pPageDict, name); | 1145 CPDF_Object* pObj = FPDFAPI_GetPageAttr(pPageDict, name); |
| 1146 if (pObj) { | 1146 if (pObj) { |
| 1147 pPageDict->SetAt(name, pObj->Clone()); | 1147 pPageDict->SetAt(name, pObj->Clone()); |
| 1148 } | 1148 } |
| 1149 } | 1149 } |
| OLD | NEW |