diff options
Diffstat (limited to 'public/fpdf_transformpage.h')
-rw-r--r-- | public/fpdf_transformpage.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/public/fpdf_transformpage.h b/public/fpdf_transformpage.h index 21421a18e0..569df2a7e0 100644 --- a/public/fpdf_transformpage.h +++ b/public/fpdf_transformpage.h @@ -24,8 +24,6 @@ typedef void* FPDF_PAGEARCLOADER; * @param[in] right - The right of the rectangle. * @param[in] top - The top of the rectangle. * @retval None. -* @note The method can not support to set this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, @@ -41,8 +39,6 @@ DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, * @param[in] right - The right of the rectangle. * @param[in] top - The top of the rectangle. * @retval None. -* @note The method can not support to set this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, @@ -61,8 +57,6 @@ DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, * @param[in] top - Pointer to a double value receiving the top of the * rectangle. * @retval True if success,else fail. -* @note The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, @@ -81,8 +75,6 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, * @param[in] top - Pointer to a double value receiving the top of the * rectangle. * @retval True if success,else fail. -* @note The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, float* left, @@ -99,8 +91,6 @@ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, * @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. -* The method can not support to get this feature for the document which -* consists of dynamic XFA fields. */ DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, @@ -158,8 +148,7 @@ DLLEXPORT void STDCALL FPDF_DestroyClipPath(FPDF_CLIPPATH clipPath); * @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. The method can not support this feature for the document -* consists of dynamic XFA fields. +* by this clip path. */ DLLEXPORT void STDCALL FPDFPage_InsertClipPath(FPDF_PAGE page, FPDF_CLIPPATH clipPath); |