Home | History | Annotate | Download | only in wallpapercropper

Lines Matching refs:fullSize

670                     Bitmap fullSize = null;
676 fullSize = BitmapFactory.decodeStream(is, null, options);
679 if (fullSize != null) {
681 scaleDownSampleSize = bounds.x / fullSize.getWidth();
689 if (roundedTrueCrop.width() > fullSize.getWidth()) {
691 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
693 if (roundedTrueCrop.right > fullSize.getWidth()) {
700 if (roundedTrueCrop.height() > fullSize.getHeight()) {
702 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
704 if (roundedTrueCrop.bottom > fullSize.getHeight()) {
712 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,