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> |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "core/fpdfapi/fpdf_edit/include/cpdf_pagecontentgenerator.h" | 13 #include "core/fpdfapi/fpdf_edit/cpdf_pagecontentgenerator.h" |
14 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" | 14 #include "core/fpdfapi/fpdf_page/include/cpdf_form.h" |
15 #include "core/fpdfapi/fpdf_page/include/cpdf_formobject.h" | 15 #include "core/fpdfapi/fpdf_page/include/cpdf_formobject.h" |
16 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" | 16 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" |
17 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" | 17 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" |
18 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h" | 18 #include "core/fpdfapi/fpdf_page/include/cpdf_pageobject.h" |
19 #include "core/fpdfapi/fpdf_page/include/cpdf_pathobject.h" | 19 #include "core/fpdfapi/fpdf_page/include/cpdf_pathobject.h" |
20 #include "core/fpdfapi/fpdf_page/include/cpdf_shadingobject.h" | 20 #include "core/fpdfapi/fpdf_page/include/cpdf_shadingobject.h" |
21 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 21 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
22 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 22 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
23 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" | 23 #include "core/fpdfapi/fpdf_parser/include/cpdf_number.h" |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { | 311 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate) { |
312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); | 312 CPDF_Page* pPage = CPDFPageFromFPDFPage(page); |
313 if (!IsPageObject(pPage)) | 313 if (!IsPageObject(pPage)) |
314 return; | 314 return; |
315 | 315 |
316 CPDF_Dictionary* pDict = pPage->m_pFormDict; | 316 CPDF_Dictionary* pDict = pPage->m_pFormDict; |
317 rotate %= 4; | 317 rotate %= 4; |
318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); | 318 pDict->SetFor("Rotate", new CPDF_Number(rotate * 90)); |
319 } | 319 } |
OLD | NEW |