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_flatten.h" |
7 #include "../include/fsdk_define.h" | 8 #include "../include/fsdk_define.h" |
8 #include "../include/fpdf_flatten.h" | |
9 #include "../include/fpdfxfa/fpdfxfa_doc.h" | 9 #include "../include/fpdfxfa/fpdfxfa_doc.h" |
10 #include "../include/fpdfxfa/fpdfxfa_page.h" | 10 #include "../include/fpdfxfa/fpdfxfa_page.h" |
11 | 11 |
12 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; | 12 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; |
13 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; | 13 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; |
14 | 14 |
15 enum FPDF_TYPE { MAX, MIN }; | 15 enum FPDF_TYPE { MAX, MIN }; |
16 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; | 16 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; |
17 | 17 |
18 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) | 18 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 | 557 |
558 pNewXObject->SetData((FX_LPCBYTE)sStream, sStream.GetLength(), F
ALSE, FALSE); | 558 pNewXObject->SetData((FX_LPCBYTE)sStream, sStream.GetLength(), F
ALSE, FALSE); |
559 } | 559 } |
560 pPageDict->RemoveAt( "Annots" ); | 560 pPageDict->RemoveAt( "Annots" ); |
561 | 561 |
562 ObjectArray.RemoveAll(); | 562 ObjectArray.RemoveAll(); |
563 RectArray.RemoveAll(); | 563 RectArray.RemoveAll(); |
564 | 564 |
565 return FLATTEN_SUCCESS; | 565 return FLATTEN_SUCCESS; |
566 } | 566 } |
OLD | NEW |