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/include/fpdfapi/fpdf_parser.h" | 7 #include "core/include/fpdfapi/fpdf_parser.h" |
8 | 8 |
9 #include "core/include/fpdfapi/fpdf_serial.h" | 9 #include "core/include/fpdfapi/fpdf_serial.h" |
| 10 #include "core/src/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" |
10 | 11 |
11 CFDF_Document::CFDF_Document() : CPDF_IndirectObjectHolder(NULL) { | 12 CFDF_Document::CFDF_Document() : CPDF_IndirectObjectHolder(NULL) { |
12 m_pRootDict = NULL; | 13 m_pRootDict = NULL; |
13 m_pFile = NULL; | 14 m_pFile = NULL; |
14 m_bOwnFile = FALSE; | 15 m_bOwnFile = FALSE; |
15 } | 16 } |
16 CFDF_Document::~CFDF_Document() { | 17 CFDF_Document::~CFDF_Document() { |
17 if (m_bOwnFile && m_pFile) { | 18 if (m_bOwnFile && m_pFile) { |
18 m_pFile->Release(); | 19 m_pFile->Release(); |
19 } | 20 } |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 return FALSE; | 88 return FALSE; |
88 } | 89 } |
89 buf << "%FDF-1.2\r\n"; | 90 buf << "%FDF-1.2\r\n"; |
90 for (const auto& pair : m_IndirectObjs) { | 91 for (const auto& pair : m_IndirectObjs) { |
91 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; | 92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; |
92 } | 93 } |
93 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() | 94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() |
94 << " 0 R>>\r\n%%EOF\r\n"; | 95 << " 0 R>>\r\n%%EOF\r\n"; |
95 return TRUE; | 96 return TRUE; |
96 } | 97 } |
OLD | NEW |