| 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 "public/fpdf_flatten.h" |
| 8 | 8 |
| 9 #include "../include/fsdk_define.h" | 9 #include "fpdfsdk/include/fsdk_define.h" |
| 10 | 10 |
| 11 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; | 11 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; |
| 12 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; | 12 typedef CFX_ArrayTemplate<CPDF_Rect> CPDF_RectArray; |
| 13 | 13 |
| 14 enum FPDF_TYPE { MAX, MIN }; | 14 enum FPDF_TYPE { MAX, MIN }; |
| 15 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; | 15 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; |
| 16 | 16 |
| 17 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) { | 17 FX_BOOL IsValiableRect(CPDF_Rect rect, CPDF_Rect rcPage) { |
| 18 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) | 18 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) |
| 19 return FALSE; | 19 return FALSE; |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 pNewXObject->SetData((const uint8_t*)sStream, sStream.GetLength(), FALSE, | 514 pNewXObject->SetData((const uint8_t*)sStream, sStream.GetLength(), FALSE, |
| 515 FALSE); | 515 FALSE); |
| 516 } | 516 } |
| 517 pPageDict->RemoveAt("Annots"); | 517 pPageDict->RemoveAt("Annots"); |
| 518 | 518 |
| 519 ObjectArray.RemoveAll(); | 519 ObjectArray.RemoveAll(); |
| 520 RectArray.RemoveAll(); | 520 RectArray.RemoveAll(); |
| 521 | 521 |
| 522 return FLATTEN_SUCCESS; | 522 return FLATTEN_SUCCESS; |
| 523 } | 523 } |
| OLD | NEW |