Home
last modified time | relevance | path

Searched refs:FPDF_BITMAP (Results 1 – 21 of 21) sorted by relevance

/external/pdfium/public/
Dfpdfview.h57 typedef struct fpdf_bitmap_t__* FPDF_BITMAP; typedef
794 FPDF_EXPORT void FPDF_CALLCONV FPDF_RenderPageBitmap(FPDF_BITMAP bitmap,
822 FPDF_RenderPageBitmapWithMatrix(FPDF_BITMAP bitmap,
969 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV FPDFBitmap_Create(int width,
1010 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV FPDFBitmap_CreateEx(int width,
1026 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetFormat(FPDF_BITMAP bitmap);
1052 FPDF_EXPORT void FPDF_CALLCONV FPDFBitmap_FillRect(FPDF_BITMAP bitmap,
1075 FPDF_EXPORT void* FPDF_CALLCONV FPDFBitmap_GetBuffer(FPDF_BITMAP bitmap);
1084 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetWidth(FPDF_BITMAP bitmap);
1093 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetHeight(FPDF_BITMAP bitmap);
[all …]
Dfpdf_thumbnail.h52 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV
Dfpdf_progressive.h77 FPDF_EXPORT int FPDF_CALLCONV FPDF_RenderPageBitmap_Start(FPDF_BITMAP bitmap,
Dfpdf_edit.h622 FPDF_BITMAP bitmap);
631 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV
Dfpdf_formfill.h1717 FPDF_BITMAP bitmap,
/external/pdfium/testing/utils/
Dbitmap_saver.cpp15 void BitmapSaver::WriteBitmapToPng(FPDF_BITMAP bitmap, in WriteBitmapToPng()
50 WriteBitmapToPng(reinterpret_cast<FPDF_BITMAP>(bitmap), filename); in WriteBitmapToPng()
Dbitmap_saver.h16 static void WriteBitmapToPng(FPDF_BITMAP bitmap, const std::string& filename);
/external/pdfium/fpdfsdk/
Dfpdf_view.cpp574 FPDF_EXPORT void FPDF_CALLCONV FPDF_RenderPageBitmap(FPDF_BITMAP bitmap, in FPDF_RenderPageBitmap()
611 FPDF_RenderPageBitmapWithMatrix(FPDF_BITMAP bitmap, in FPDF_RenderPageBitmapWithMatrix()
756 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV FPDFBitmap_Create(int width, in FPDFBitmap_Create()
766 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV FPDFBitmap_CreateEx(int width, in FPDFBitmap_CreateEx()
798 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetFormat(FPDF_BITMAP bitmap) { in FPDFBitmap_GetFormat()
818 FPDF_EXPORT void FPDF_CALLCONV FPDFBitmap_FillRect(FPDF_BITMAP bitmap, in FPDFBitmap_FillRect()
835 FPDF_EXPORT void* FPDF_CALLCONV FPDFBitmap_GetBuffer(FPDF_BITMAP bitmap) { in FPDFBitmap_GetBuffer()
839 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetWidth(FPDF_BITMAP bitmap) { in FPDFBitmap_GetWidth()
843 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetHeight(FPDF_BITMAP bitmap) { in FPDFBitmap_GetHeight()
847 FPDF_EXPORT int FPDF_CALLCONV FPDFBitmap_GetStride(FPDF_BITMAP bitmap) { in FPDFBitmap_GetStride()
[all …]
Dcpdfsdk_helpers.h76 inline FPDF_BITMAP FPDFBitmapFromCFXDIBitmap(CFX_DIBitmap* bitmap) { in FPDFBitmapFromCFXDIBitmap()
77 return reinterpret_cast<FPDF_BITMAP>(bitmap); in FPDFBitmapFromCFXDIBitmap()
79 inline CFX_DIBitmap* CFXDIBitmapFromFPDFBitmap(FPDF_BITMAP bitmap) { in CFXDIBitmapFromFPDFBitmap()
Dfpdf_thumbnail.cpp56 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV
Dfpdf_editimg.cpp167 FPDF_BITMAP bitmap) { in FPDFImageObj_SetBitmap()
190 FPDF_EXPORT FPDF_BITMAP FPDF_CALLCONV
Dfpdf_progressive.cpp44 FPDF_EXPORT int FPDF_CALLCONV FPDF_RenderPageBitmap_Start(FPDF_BITMAP bitmap, in FPDF_RenderPageBitmap_Start()
Dfpdf_formfill.cpp175 FPDF_BITMAP bitmap, in FFLCommon()
566 FPDF_BITMAP bitmap, in FPDF_FFLDraw()
Dfpdf_editimg_unittest.cpp56 FPDF_BITMAP bitmap = FPDFBitmap_Create(kBitmapSize, kBitmapSize, 0); in TEST_F()
Dfpdf_formfill_embeddertest.cpp587 FPDF_BITMAP bitmap = FPDFBitmap_Create(512, 512, 0); in TEST_F()
Dfpdf_annot_embeddertest.cpp955 FPDF_BITMAP image_bitmap; in TEST_F()
Dfpdf_edit_embeddertest.cpp3205 FPDF_BITMAP bitmap = FPDFImageObj_GetBitmap(obj); in TEST_F()
/external/pdfium/testing/
Dembedder_test.h202 static std::string HashBitmap(FPDF_BITMAP bitmap);
207 static void WriteBitmapToPng(FPDF_BITMAP bitmap, const std::string& filename);
211 static void CompareBitmap(FPDF_BITMAP bitmap,
Dembedder_test.cpp39 int GetBitmapBytesPerPixel(FPDF_BITMAP bitmap) { in GetBitmapBytesPerPixel()
612 std::string EmbedderTest::HashBitmap(FPDF_BITMAP bitmap) { in HashBitmap()
630 void EmbedderTest::WriteBitmapToPng(FPDF_BITMAP bitmap, in WriteBitmapToPng()
637 void EmbedderTest::CompareBitmap(FPDF_BITMAP bitmap, in CompareBitmap()
/external/pdfium/public/cpp/
Dfpdf_deleters.h29 inline void operator()(FPDF_BITMAP bitmap) { FPDFBitmap_Destroy(bitmap); } in operator()
Dfpdf_scopers.h23 std::unique_ptr<std::remove_pointer<FPDF_BITMAP>::type, FPDFBitmapDeleter>;