Lines Matching defs:bitmap
22 import android.graphics.Bitmap;
37 * pages. We use a {@link android.graphics.pdf.PdfRenderer} to render PDF pages as {@link android.graphics.Bitmap}s.
62 * {@link android.widget.ImageView} that shows a PDF page as a {@link android.graphics.Bitmap}
172 // Important: the destination bitmap must be ARGB (not RGB).
173 Bitmap bitmap = Bitmap.createBitmap(mCurrentPage.getWidth(), mCurrentPage.getHeight(),
174 Bitmap.Config.ARGB_8888);
175 // Here, we render the page onto the Bitmap.
179 mCurrentPage.render(bitmap, null, null, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY);
180 // We are ready to show the Bitmap to user.
181 mImageView.setImageBitmap(bitmap);