Home | History | Annotate | Download | only in wallpapercropper

Lines Matching defs:fullSize

671                     Bitmap fullSize = null;
677 fullSize = BitmapFactory.decodeStream(is, null, options);
680 if (fullSize != null) {
682 scaleDownSampleSize = bounds.x / fullSize.getWidth();
690 if (roundedTrueCrop.width() > fullSize.getWidth()) {
692 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
694 if (roundedTrueCrop.right > fullSize.getWidth()) {
701 if (roundedTrueCrop.height() > fullSize.getHeight()) {
703 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
705 if (roundedTrueCrop.bottom > fullSize.getHeight()) {
713 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,