Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/pdf/framework/java/android/graphics/pdf/
DPdfProcessor.java237 public void renderPage(int pageNum, Bitmap bitmap, Rect destClip, Matrix transform, in renderPage() argument
248 Preconditions.checkArgument(clipInBitmap(destClip, bitmap), "destClip not in bounds"); in renderPage()
249 final int contentLeft = (destClip != null) ? destClip.left : 0; in renderPage()
250 final int contentTop = (destClip != null) ? destClip.top : 0; in renderPage()
251 final int contentRight = (destClip != null) ? destClip.right : bitmap.getWidth(); in renderPage()
252 final int contentBottom = (destClip != null) ? destClip.bottom : bitmap.getHeight(); in renderPage()
DPdfRendererPreV.java372 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, in render() argument
375 mPdfProcessor.renderPage(mIndex, destination, destClip, transform, in render()
/packages/providers/MediaProvider/pdf/framework-v/java/android/graphics/pdf/
DPdfRenderer.java546 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, in render() argument
549 mPdfProcessor.renderPage(mIndex, destination, destClip, transform, in render()
573 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, in render() argument
577 mPdfProcessor.renderPage(mIndex, destination, destClip, transform, params, in render()