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

Side by Side Diff: fpdfsdk/fpdfview_c_api_test.c

Issue 2526473002: Add FPDF_RenderPageBitmapWithMatrix. (Closed)
Patch Set: Created 4 years 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 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 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 // This "C" (not "C++") file ensures that the public headers compile 5 // This "C" (not "C++") file ensures that the public headers compile
6 // and link for "C" (and not just "C++"). 6 // and link for "C" (and not just "C++").
7 7
8 #include <stdio.h> 8 #include <stdio.h>
9 9
10 #include "fpdfsdk/fpdfview_c_api_test.h" 10 #include "fpdfsdk/fpdfview_c_api_test.h"
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 CHK(FPDF_GetFileVersion); 207 CHK(FPDF_GetFileVersion);
208 CHK(FPDF_GetLastError); 208 CHK(FPDF_GetLastError);
209 CHK(FPDF_GetDocPermissions); 209 CHK(FPDF_GetDocPermissions);
210 CHK(FPDF_GetSecurityHandlerRevision); 210 CHK(FPDF_GetSecurityHandlerRevision);
211 CHK(FPDF_GetPageCount); 211 CHK(FPDF_GetPageCount);
212 CHK(FPDF_LoadPage); 212 CHK(FPDF_LoadPage);
213 CHK(FPDF_GetPageWidth); 213 CHK(FPDF_GetPageWidth);
214 CHK(FPDF_GetPageHeight); 214 CHK(FPDF_GetPageHeight);
215 CHK(FPDF_GetPageSizeByIndex); 215 CHK(FPDF_GetPageSizeByIndex);
216 CHK(FPDF_RenderPageBitmap); 216 CHK(FPDF_RenderPageBitmap);
217 CHK(FPDF_RenderPageBitmapWithMatrix);
217 CHK(FPDF_ClosePage); 218 CHK(FPDF_ClosePage);
218 CHK(FPDF_CloseDocument); 219 CHK(FPDF_CloseDocument);
219 CHK(FPDF_DeviceToPage); 220 CHK(FPDF_DeviceToPage);
220 CHK(FPDF_PageToDevice); 221 CHK(FPDF_PageToDevice);
221 CHK(FPDFBitmap_Create); 222 CHK(FPDFBitmap_Create);
222 CHK(FPDFBitmap_CreateEx); 223 CHK(FPDFBitmap_CreateEx);
223 CHK(FPDFBitmap_FillRect); 224 CHK(FPDFBitmap_FillRect);
224 CHK(FPDFBitmap_GetBuffer); 225 CHK(FPDFBitmap_GetBuffer);
225 CHK(FPDFBitmap_GetWidth); 226 CHK(FPDFBitmap_GetWidth);
226 CHK(FPDFBitmap_GetHeight); 227 CHK(FPDFBitmap_GetHeight);
(...skipping 10 matching lines...) Expand all
237 #ifdef PDF_ENABLE_XFA 238 #ifdef PDF_ENABLE_XFA
238 CHK(FPDF_BStr_Init); 239 CHK(FPDF_BStr_Init);
239 CHK(FPDF_BStr_Set); 240 CHK(FPDF_BStr_Set);
240 CHK(FPDF_BStr_Clear); 241 CHK(FPDF_BStr_Clear);
241 #endif 242 #endif
242 243
243 return 1; 244 return 1;
244 } 245 }
245 246
246 #undef CHK 247 #undef CHK
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698