Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: public/fpdf_formfill.h

Issue 1776313002: Add bitmaps and skp output to Skia port (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: wip; add skp output to test framework Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef PUBLIC_FPDF_FORMFILL_H_ 7 #ifndef PUBLIC_FPDF_FORMFILL_H_
8 #define PUBLIC_FPDF_FORMFILL_H_ 8 #define PUBLIC_FPDF_FORMFILL_H_
9 9
10 #include "fpdfview.h" 10 #include "fpdfview.h"
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 * This method is designed to only render annotations and FormFields on 1493 * This method is designed to only render annotations and FormFields on
1494 *the page. 1494 *the page.
1495 * Without FPDF_ANNOT specified for flags, Rendering functions such as 1495 * Without FPDF_ANNOT specified for flags, Rendering functions such as
1496 *FPDF_RenderPageBitmap or FPDF_RenderPageBitmap_Start will only render page 1496 *FPDF_RenderPageBitmap or FPDF_RenderPageBitmap_Start will only render page
1497 *contents(without annotations) to a bitmap. 1497 *contents(without annotations) to a bitmap.
1498 * In order to implement the FormFill functions,Implementation should 1498 * In order to implement the FormFill functions,Implementation should
1499 *call this method after rendering functions finish rendering the page contents. 1499 *call this method after rendering functions finish rendering the page contents.
1500 **/ 1500 **/
1501 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle, 1501 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle,
1502 FPDF_BITMAP bitmap, 1502 FPDF_BITMAP bitmap,
1503 void* recorder,
dsinclair 2016/03/10 14:38:54 Can't modify this as it's public API. If we add a
caryclark 2016/03/10 20:44:55 Done.
1503 FPDF_PAGE page, 1504 FPDF_PAGE page,
1504 int start_x, 1505 int start_x,
1505 int start_y, 1506 int start_y,
1506 int size_x, 1507 int size_x,
1507 int size_y, 1508 int size_y,
1508 int rotate, 1509 int rotate,
1509 int flags); 1510 int flags);
1510 1511
1511 #ifdef PDF_ENABLE_XFA 1512 #ifdef PDF_ENABLE_XFA
1512 /** 1513 /**
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle, 1722 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle,
1722 FPDF_BYTESTRING bsText, 1723 FPDF_BYTESTRING bsText,
1723 FPDF_DWORD size); 1724 FPDF_DWORD size);
1724 #endif // PDF_ENABLE_XFA 1725 #endif // PDF_ENABLE_XFA
1725 1726
1726 #ifdef __cplusplus 1727 #ifdef __cplusplus
1727 } 1728 }
1728 #endif 1729 #endif
1729 1730
1730 #endif // PUBLIC_FPDF_FORMFILL_H_ 1731 #endif // PUBLIC_FPDF_FORMFILL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698