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 <algorithm> | 9 #include <algorithm> |
10 | 10 |
11 #include "core/fpdfapi/fpdf_page/cpdf_page.h" | 11 #include "core/fpdfapi/fpdf_page/cpdf_page.h" |
12 #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" | 12 #include "core/fpdfapi/fpdf_page/cpdf_pageobject.h" |
13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
14 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
15 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" |
16 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" |
17 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_stream_acc.h" |
18 #include "core/fpdfdoc/include/cpdf_annot.h" | 18 #include "core/fpdfdoc/cpdf_annot.h" |
19 #include "fpdfsdk/include/fsdk_define.h" | 19 #include "fpdfsdk/include/fsdk_define.h" |
20 | 20 |
21 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; | 21 typedef CFX_ArrayTemplate<CPDF_Dictionary*> CPDF_ObjectArray; |
22 typedef CFX_ArrayTemplate<CFX_FloatRect> CPDF_RectArray; | 22 typedef CFX_ArrayTemplate<CFX_FloatRect> CPDF_RectArray; |
23 | 23 |
24 enum FPDF_TYPE { MAX, MIN }; | 24 enum FPDF_TYPE { MAX, MIN }; |
25 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; | 25 enum FPDF_VALUE { TOP, LEFT, RIGHT, BOTTOM }; |
26 | 26 |
27 FX_BOOL IsValiableRect(CFX_FloatRect rect, CFX_FloatRect rcPage) { | 27 FX_BOOL IsValiableRect(CFX_FloatRect rect, CFX_FloatRect rcPage) { |
28 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) | 28 if (rect.left - rect.right > 0.000001f || rect.bottom - rect.top > 0.000001f) |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 sStream += sTemp; | 506 sStream += sTemp; |
507 pNewXObject->SetData(sStream.raw_str(), sStream.GetLength()); | 507 pNewXObject->SetData(sStream.raw_str(), sStream.GetLength()); |
508 } | 508 } |
509 pPageDict->RemoveFor("Annots"); | 509 pPageDict->RemoveFor("Annots"); |
510 | 510 |
511 ObjectArray.RemoveAll(); | 511 ObjectArray.RemoveAll(); |
512 RectArray.RemoveAll(); | 512 RectArray.RemoveAll(); |
513 | 513 |
514 return FLATTEN_SUCCESS; | 514 return FLATTEN_SUCCESS; |
515 } | 515 } |
OLD | NEW |