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 | 9 |
10 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; | 10 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; |
11 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; | 11 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; |
12 | 12 |
13 enum FPDF_TYPE { MAX, MIN }; | 13 enum FPDF_TYPE { MAX, MIN }; |
14 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; | 14 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; |
15 | 15 |
16 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) | 16 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) |
17 { | 17 { |
18 if ( rect.left - rect.right > 0.000001f || | 18 if ( rect.left - rect.right > 0.000001f || |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 | 548 |
549 pNewXObject->SetData((FX_LPCBYTE)sStream, sStream.GetLength(), F
ALSE, FALSE); | 549 pNewXObject->SetData((FX_LPCBYTE)sStream, sStream.GetLength(), F
ALSE, FALSE); |
550 } | 550 } |
551 pPageDict->RemoveAt( "Annots" ); | 551 pPageDict->RemoveAt( "Annots" ); |
552 | 552 |
553 ObjectArray.RemoveAll(); | 553 ObjectArray.RemoveAll(); |
554 RectArray.RemoveAll(); | 554 RectArray.RemoveAll(); |
555 | 555 |
556 return FLATTEN_SUCCESS; | 556 return FLATTEN_SUCCESS; |
557 } | 557 } |
OLD | NEW |