Index: fpdfsdk/include/fpdf_transformpage.h |
diff --git a/fpdfsdk/include/fpdf_transformpage.h b/fpdfsdk/include/fpdf_transformpage.h |
index 69ffe240090c24a2a71a5ac12b5496a5f0c40297..6cc4d90c0c34bf0bde713b0f4dc81e60c8f807de 100644 |
--- a/fpdfsdk/include/fpdf_transformpage.h |
+++ b/fpdfsdk/include/fpdf_transformpage.h |
@@ -1,7 +1,7 @@ |
// Copyright 2014 PDFium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
- |
+ |
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
#ifndef _TRANSFORMPAGE_H_ |
@@ -14,7 +14,7 @@ |
typedef void* FPDF_PAGEARCSAVER; |
typedef void* FPDF_PAGEARCLOADER; |
/** |
-* Set "MediaBox" entry to the page dictionary. |
+* Set "MediaBox" entry to the page dictionary. |
* @param[in] page - Handle to a page. |
* @param[in] left - The left of the rectangle. |
* @param[in] bottom - The bottom of the rectangle. |
@@ -22,10 +22,14 @@ typedef void* FPDF_PAGEARCLOADER; |
* @param[in] top - The top of the rectangle. |
* @retval None. |
*/ |
-DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top); |
+DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, |
+ float left, |
+ float bottom, |
+ float right, |
+ float top); |
/** |
-* Set "CropBox" entry to the page dictionary. |
+* Set "CropBox" entry to the page dictionary. |
* @param[in] page - Handle to a page. |
* @param[in] left - The left of the rectangle. |
* @param[in] bottom - The bottom of the rectangle. |
@@ -33,42 +37,66 @@ DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bo |
* @param[in] top - The top of the rectangle. |
* @retval None. |
*/ |
-DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top); |
- |
+DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, |
+ float left, |
+ float bottom, |
+ float right, |
+ float top); |
-/** Get "MediaBox" entry from the page dictionary. |
+/** Get "MediaBox" entry from the page dictionary. |
* @param[in] page - Handle to a page. |
-* @param[in] left - Pointer to a double value receiving the left of the rectangle. |
-* @param[in] bottom - Pointer to a double value receiving the bottom of the rectangle. |
-* @param[in] right - Pointer to a double value receiving the right of the rectangle. |
-* @param[in] top - Pointer to a double value receiving the top of the rectangle. |
+* @param[in] left - Pointer to a double value receiving the left of the |
+* rectangle. |
+* @param[in] bottom - Pointer to a double value receiving the bottom of the |
+* rectangle. |
+* @param[in] right - Pointer to a double value receiving the right of the |
+* rectangle. |
+* @param[in] top - Pointer to a double value receiving the top of the |
+* rectangle. |
* @retval True if success,else fail. |
*/ |
-DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top); |
+DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, |
+ float* left, |
+ float* bottom, |
+ float* right, |
+ float* top); |
-/** Get "CropBox" entry from the page dictionary. |
+/** Get "CropBox" entry from the page dictionary. |
* @param[in] page - Handle to a page. |
-* @param[in] left - Pointer to a double value receiving the left of the rectangle. |
-* @param[in] bottom - Pointer to a double value receiving the bottom of the rectangle. |
-* @param[in] right - Pointer to a double value receiving the right of the rectangle. |
-* @param[in] top - Pointer to a double value receiving the top of the rectangle. |
+* @param[in] left - Pointer to a double value receiving the left of the |
+* rectangle. |
+* @param[in] bottom - Pointer to a double value receiving the bottom of the |
+* rectangle. |
+* @param[in] right - Pointer to a double value receiving the right of the |
+* rectangle. |
+* @param[in] top - Pointer to a double value receiving the top of the |
+* rectangle. |
* @retval True if success,else fail. |
*/ |
-DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top); |
+DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, |
+ float* left, |
+ float* bottom, |
+ float* right, |
+ float* top); |
/** |
-* Transform the whole page with a specified matrix, then clip the page content region. |
+* Transform the whole page with a specified matrix, then clip the page content |
+*region. |
* |
* @param[in] page - A page handle. |
* @param[in] matrix - The transform matrix. |
* @param[in] clipRect - A rectangle page area to be clipped. |
-* @Note. This function will transform the whole page, and would take effect to all the objects in the page. |
+* @Note. This function will transform the whole page, and would take effect to |
+*all the objects in the page. |
*/ |
-DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, FS_RECTF* clipRect); |
+DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, |
+ FS_MATRIX* matrix, |
+ FS_RECTF* clipRect); |
/** |
* Transform (scale, rotate, shear, move) the clip path of page object. |
-* @param[in] page_object - Handle to a page object. Returned by FPDFPageObj_NewImageObj. |
+* @param[in] page_object - Handle to a page object. Returned by |
+* FPDFPageObj_NewImageObj. |
* @param[in] a - The coefficient "a" of the matrix. |
* @param[in] b - The coefficient "b" of the matrix. |
* @param[in] c - The coefficient "c" of the matrix. |
@@ -77,18 +105,26 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX |
* @param[in] f - The coefficient "f" of the matrix. |
* @retval None. |
*/ |
-DLLEXPORT void STDCALL FPDFPageObj_TransformClipPath(FPDF_PAGEOBJECT page_object,double a, double b, double c, double d, double e, double f); |
+DLLEXPORT void STDCALL |
+ FPDFPageObj_TransformClipPath(FPDF_PAGEOBJECT page_object, |
+ double a, |
+ double b, |
+ double c, |
+ double d, |
+ double e, |
+ double f); |
/** |
* Create a new clip path, with a rectangle inserted. |
-* |
+* |
* @param[in] left - The left of the clip box. |
* @param[in] bottom - The bottom of the clip box. |
* @param[in] right - The right of the clip box. |
* @param[in] top - The top of the clip box. |
* @retval a handle to the clip path. |
*/ |
-DLLEXPORT FPDF_CLIPPATH STDCALL FPDF_CreateClipPath(float left, float bottom, float right, float top); |
+DLLEXPORT FPDF_CLIPPATH STDCALL |
+ FPDF_CreateClipPath(float left, float bottom, float right, float top); |
/** |
* Destroy the clip path. |
@@ -100,14 +136,16 @@ DLLEXPORT FPDF_CLIPPATH STDCALL FPDF_CreateClipPath(float left, float bottom, fl |
DLLEXPORT void STDCALL FPDF_DestroyClipPath(FPDF_CLIPPATH clipPath); |
/** |
-* Clip the page content, the page content that outside the clipping region become invisible. |
+* Clip the page content, the page content that outside the clipping region |
+*become invisible. |
* |
* @param[in] page - A page handle. |
* @param[in] clipPath - A handle to the clip path. |
-* @Note. A clip path will be inserted before the page content stream or content array. In this way, the page content will be clipped |
-* by this clip path. |
+* @Note. A clip path will be inserted before the page content stream or content |
+*array. In this way, the page content will be clipped |
+* by this clip path. |
*/ |
-DLLEXPORT void STDCALL FPDFPage_InsertClipPath(FPDF_PAGE page,FPDF_CLIPPATH clipPath); |
+DLLEXPORT void STDCALL |
+ FPDFPage_InsertClipPath(FPDF_PAGE page, FPDF_CLIPPATH clipPath); |
#endif |
- |