Home | History | Annotate | Download | only in app

Lines Matching defs:cropRect

720                     RectF cropRect = new RectF(0, 0, crop.getWidth(), crop.getHeight());
722 m.setRectToRect(cropRect, returnRect, Matrix.ScaleToFit.FILL);
741 RectF cropRect = new RectF();
744 cropRect.top = 0;
745 cropRect.bottom = inHeight;
747 cropRect.left = (inWidth - cropWidth) * horizontalAlignment;
748 cropRect.right = cropRect.left + cropWidth;
750 cropRect.left = 0;
751 cropRect.right = inWidth;
753 cropRect.top = (inHeight - cropHeight) * verticalAlignment;
754 cropRect.bottom = cropRect.top + cropHeight;
756 return cropRect;