Home | History | Annotate | Download | only in app

Lines Matching defs:cropRect

526                     RectF cropRect = new RectF(0, 0, crop.getWidth(), crop.getHeight());
528 m.setRectToRect(cropRect, returnRect, Matrix.ScaleToFit.FILL);
547 RectF cropRect = new RectF();
550 cropRect.top = 0;
551 cropRect.bottom = inHeight;
553 cropRect.left = (inWidth - cropWidth) * horizontalAlignment;
554 cropRect.right = cropRect.left + cropWidth;
556 cropRect.left = 0;
557 cropRect.right = inWidth;
559 cropRect.top = (inHeight - cropHeight) * verticalAlignment;
560 cropRect.bottom = cropRect.top + cropHeight;
562 return cropRect;