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 "public/fpdf_edit.h" | 7 #include "public/fpdf_edit.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 return nullptr; | 111 return nullptr; |
112 | 112 |
113 CPDF_Array* pMediaBoxArray = new CPDF_Array; | 113 CPDF_Array* pMediaBoxArray = new CPDF_Array; |
114 pMediaBoxArray->Add(new CPDF_Number(0)); | 114 pMediaBoxArray->Add(new CPDF_Number(0)); |
115 pMediaBoxArray->Add(new CPDF_Number(0)); | 115 pMediaBoxArray->Add(new CPDF_Number(0)); |
116 pMediaBoxArray->Add(new CPDF_Number(FX_FLOAT(width))); | 116 pMediaBoxArray->Add(new CPDF_Number(FX_FLOAT(width))); |
117 pMediaBoxArray->Add(new CPDF_Number(FX_FLOAT(height))); | 117 pMediaBoxArray->Add(new CPDF_Number(FX_FLOAT(height))); |
118 | 118 |
119 pPageDict->SetFor("MediaBox", pMediaBoxArray); | 119 pPageDict->SetFor("MediaBox", pMediaBoxArray); |
120 pPageDict->SetFor("Rotate", new CPDF_Number(0)); | 120 pPageDict->SetFor("Rotate", new CPDF_Number(0)); |
121 pPageDict->SetFor("Resources", new CPDF_Dictionary); | 121 pPageDict->SetFor("Resources", |
| 122 new CPDF_Dictionary(pDoc->GetByteStringPool())); |
122 | 123 |
123 #ifdef PDF_ENABLE_XFA | 124 #ifdef PDF_ENABLE_XFA |
124 CPDFXFA_Page* pPage = | 125 CPDFXFA_Page* pPage = |
125 new CPDFXFA_Page((CPDFXFA_Document*)document, page_index); | 126 new CPDFXFA_Page((CPDFXFA_Document*)document, page_index); |
126 pPage->LoadPDFPage(pPageDict); | 127 pPage->LoadPDFPage(pPageDict); |
127 #else // PDF_ENABLE_XFA | 128 #else // PDF_ENABLE_XFA |
128 CPDF_Page* pPage = new CPDF_Page(pDoc, pPageDict, true); | 129 CPDF_Page* pPage = new CPDF_Page(pDoc, pPageDict, true); |
129 pPage->ParseContent(); | 130 pPage->ParseContent(); |
130 #endif // PDF_ENABLE_XFA | 131 #endif // PDF_ENABLE_XFA |
131 | 132 |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 311 |
311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { | 312 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { |
312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); | 313 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); |
313 if (!IsPageObject(pPage)) | 314 if (!IsPageObject(pPage)) |
314 return; | 315 return; |
315 | 316 |
316 CPDF_Dictionary* pDict = pPage->m_pFormDict; | 317 CPDF_Dictionary* pDict = pPage->m_pFormDict; |
317 rotate %= 4; | 318 rotate %= 4; |
318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); | 319 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); |
319 } | 320 } |
OLD | NEW |