Searched refs:fullSize (Results 1 – 5 of 5) sorted by relevance
268 Bitmap fullSize = null; in cropBitmap() local274 fullSize = BitmapFactory.decodeStream(is, null, options); in cropBitmap()277 if (fullSize != null) { in cropBitmap()279 scaleDownSampleSize = bounds.x / fullSize.getWidth(); in cropBitmap()287 if (roundedTrueCrop.width() > fullSize.getWidth()) { in cropBitmap()289 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth(); in cropBitmap()291 if (roundedTrueCrop.right > fullSize.getWidth()) { in cropBitmap()298 if (roundedTrueCrop.height() > fullSize.getHeight()) { in cropBitmap()300 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight(); in cropBitmap()302 if (roundedTrueCrop.bottom > fullSize.getHeight()) { in cropBitmap()[all …]
63 MetadataImage fullSize = getLastImage(); in close() local64 if (fullSize != null) { in close()67 mFullSizeImages.remove(fullSize.getTimestamp()); in close()72 ImageProxy thumbnail = getThumbnail(fullSize.getTimestamp()); in close()79 mSingleImageSaver.saveAndCloseImage(fullSize, Optional.fromNullable(thumbnail), in close()80 fullSize.getMetadata()); in close()
34 public void saveAndCloseImage(ImageProxy fullSize, Optional<ImageProxy> thumbnail, in saveAndCloseImage() argument
243 final float fullSize = (mIsPortrait ? (float) getWidth() : (float) getHeight()); in setupAnimators() local249 fullSize-mAnimateFrom.width()/2.0f); in setupAnimators()323 ValueAnimator.ofFloat(fullSize-mAnimateFrom.width()/2.0f, in setupAnimators()
500 Bitmap fullSize = null; in doInBackground() local502 fullSize = BitmapFactory.decodeStream(mInStream); in doInBackground()504 if (fullSize != null) { in doInBackground()505 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left, in doInBackground()