Home | History | Annotate | Download | only in crop

Lines Matching refs:bmap

328         Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false);
329 if (bmap != null) {
330 bmap = orientBitmap(bmap, orientation);
331 if (bmap.getConfig()!= Bitmap.Config.ARGB_8888){
332 bmap = bmap.copy( Bitmap.Config.ARGB_8888,true);
335 return bmap;
348 Bitmap bmap = null;
352 bmap = loadDownsampledBitmap(context, sourceUri, sampleSize);
359 bmap = null;
364 return bmap;
393 Bitmap bmap = null;
397 bmap = BitmapFactory.decodeResource(
405 bmap = null;
410 return bmap;