OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_page/cpdf_shadingpattern.h" | 7 #include "core/fpdfapi/fpdf_page/cpdf_shadingpattern.h" |
8 | 8 |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 parentMatrix), | 32 parentMatrix), |
33 m_ShadingType(kInvalidShading), | 33 m_ShadingType(kInvalidShading), |
34 m_bShadingObj(bShading), | 34 m_bShadingObj(bShading), |
35 m_pShadingObj(pPatternObj), | 35 m_pShadingObj(pPatternObj), |
36 m_pCS(nullptr), | 36 m_pCS(nullptr), |
37 m_pCountedCS(nullptr), | 37 m_pCountedCS(nullptr), |
38 m_nFuncs(0) { | 38 m_nFuncs(0) { |
39 if (!bShading) { | 39 if (!bShading) { |
40 CPDF_Dictionary* pDict = m_pPatternObj->GetDict(); | 40 CPDF_Dictionary* pDict = m_pPatternObj->GetDict(); |
41 m_Pattern2Form = pDict->GetMatrixBy("Matrix"); | 41 m_Pattern2Form = pDict->GetMatrixBy("Matrix"); |
42 m_pShadingObj = pDict->GetElementValue("Shading"); | 42 m_pShadingObj = pDict->GetDirectObjectBy("Shading"); |
43 if (parentMatrix) | 43 if (parentMatrix) |
44 m_Pattern2Form.Concat(*parentMatrix); | 44 m_Pattern2Form.Concat(*parentMatrix); |
45 } | 45 } |
46 for (int i = 0; i < FX_ArraySize(m_pFunctions); ++i) | 46 for (int i = 0; i < FX_ArraySize(m_pFunctions); ++i) |
47 m_pFunctions[i] = nullptr; | 47 m_pFunctions[i] = nullptr; |
48 } | 48 } |
49 | 49 |
50 CPDF_ShadingPattern::~CPDF_ShadingPattern() { | 50 CPDF_ShadingPattern::~CPDF_ShadingPattern() { |
51 for (int i = 0; i < m_nFuncs; ++i) | 51 for (int i = 0; i < m_nFuncs; ++i) |
52 delete m_pFunctions[i]; | 52 delete m_pFunctions[i]; |
(...skipping 10 matching lines...) Expand all Loading... |
63 CPDF_Dictionary* pShadingDict = | 63 CPDF_Dictionary* pShadingDict = |
64 m_pShadingObj ? m_pShadingObj->GetDict() : nullptr; | 64 m_pShadingObj ? m_pShadingObj->GetDict() : nullptr; |
65 if (!pShadingDict) | 65 if (!pShadingDict) |
66 return FALSE; | 66 return FALSE; |
67 | 67 |
68 if (m_nFuncs) { | 68 if (m_nFuncs) { |
69 for (int i = 0; i < m_nFuncs; i++) | 69 for (int i = 0; i < m_nFuncs; i++) |
70 delete m_pFunctions[i]; | 70 delete m_pFunctions[i]; |
71 m_nFuncs = 0; | 71 m_nFuncs = 0; |
72 } | 72 } |
73 CPDF_Object* pFunc = pShadingDict->GetElementValue("Function"); | 73 CPDF_Object* pFunc = pShadingDict->GetDirectObjectBy("Function"); |
74 if (pFunc) { | 74 if (pFunc) { |
75 if (CPDF_Array* pArray = pFunc->AsArray()) { | 75 if (CPDF_Array* pArray = pFunc->AsArray()) { |
76 m_nFuncs = std::min<int>(pArray->GetCount(), 4); | 76 m_nFuncs = std::min<int>(pArray->GetCount(), 4); |
77 | 77 |
78 for (int i = 0; i < m_nFuncs; i++) | 78 for (int i = 0; i < m_nFuncs; i++) |
79 m_pFunctions[i] = CPDF_Function::Load(pArray->GetElementValue(i)); | 79 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i)); |
80 } else { | 80 } else { |
81 m_pFunctions[0] = CPDF_Function::Load(pFunc); | 81 m_pFunctions[0] = CPDF_Function::Load(pFunc); |
82 m_nFuncs = 1; | 82 m_nFuncs = 1; |
83 } | 83 } |
84 } | 84 } |
85 CPDF_Object* pCSObj = pShadingDict->GetElementValue("ColorSpace"); | 85 CPDF_Object* pCSObj = pShadingDict->GetDirectObjectBy("ColorSpace"); |
86 if (!pCSObj) | 86 if (!pCSObj) |
87 return FALSE; | 87 return FALSE; |
88 | 88 |
89 CPDF_DocPageData* pDocPageData = m_pDocument->GetPageData(); | 89 CPDF_DocPageData* pDocPageData = m_pDocument->GetPageData(); |
90 m_pCS = pDocPageData->GetColorSpace(pCSObj, nullptr); | 90 m_pCS = pDocPageData->GetColorSpace(pCSObj, nullptr); |
91 if (m_pCS) | 91 if (m_pCS) |
92 m_pCountedCS = pDocPageData->FindColorSpacePtr(m_pCS->GetArray()); | 92 m_pCountedCS = pDocPageData->FindColorSpacePtr(m_pCS->GetArray()); |
93 | 93 |
94 m_ShadingType = ToShadingType(pShadingDict->GetIntegerBy("ShadingType")); | 94 m_ShadingType = ToShadingType(pShadingDict->GetIntegerBy("ShadingType")); |
95 | 95 |
96 // We expect to have a stream if our shading type is a mesh. | 96 // We expect to have a stream if our shading type is a mesh. |
97 if (IsMeshShading() && !ToStream(m_pShadingObj)) | 97 if (IsMeshShading() && !ToStream(m_pShadingObj)) |
98 return FALSE; | 98 return FALSE; |
99 | 99 |
100 return TRUE; | 100 return TRUE; |
101 } | 101 } |
OLD | NEW |