Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfapi/fpdf_edit/
Dfpdf_edit_image.cpp108 int32_t BitmapHeight = pBitmap->GetHeight(); in SetImage() local
109 if (BitmapWidth < 1 || BitmapHeight < 1) { in SetImage()
121 pDict->SetAtInteger("Height", BitmapHeight); in SetImage()
290 pNewBitmap->Create(BitmapWidth, BitmapHeight, FXDIB_Argb); in SetImage()
293 for (int32_t row = 0; row < BitmapHeight; row++) { in SetImage()
322 dest_buf = FX_Alloc2D(uint8_t, dest_pitch, BitmapHeight); in SetImage()
324 dest_pitch * BitmapHeight; // Safe since checked alloc returned. in SetImage()
327 for (int32_t i = 0; i < BitmapHeight; i++) { in SetImage()
338 dest_buf = FX_Alloc2D(uint8_t, dest_pitch, BitmapHeight); in SetImage()
340 dest_pitch * BitmapHeight; // Safe since checked alloc returned. in SetImage()
[all …]