Searched refs:originalWidth (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
D | TaskCompressImageToJpeg.java | 434 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, in getImageSizeForOrientation() argument 438 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation() 441 return new Size(originalHeight, originalWidth); in getImageSizeForOrientation() 444 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation()
|
/packages/apps/Settings/src/com/android/settings/fingerprint/ |
D | FingerprintLocationAnimationVideoView.java | 50 int originalWidth = MeasureSpec.getSize(widthMeasureSpec); in onMeasure() local 51 int height = Math.round(mAspect * originalWidth); in onMeasure()
|
/packages/apps/Camera2/src/com/android/camera/ |
D | PhotoModule.java | 827 int originalWidth = original.getWidth(); in cropJpegDataToAspectRatio() local 832 if (originalWidth > originalHeight) { in cropJpegDataToAspectRatio() 833 newHeight = (int) (originalWidth / targetAspectRatio); in cropJpegDataToAspectRatio() 834 newWidth = originalWidth; in cropJpegDataToAspectRatio() 839 int xOffset = (originalWidth - newWidth)/2; in cropJpegDataToAspectRatio()
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
D | DrawableDownloader.java | 80 public BitmapItem(int originalWidth, int originalHeight) { in BitmapItem() argument 81 mOriginalWidth = originalWidth; in BitmapItem()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | Utils.java | 673 double originalWidth = originalBitmap.getWidth(); in getReducedSizeBitmap() local 677 scaleX = newWidth / originalWidth; in getReducedSizeBitmap() 680 newWidth = (int)Math.round(originalWidth * scale); in getReducedSizeBitmap()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
D | OneCameraZslImpl.java | 992 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, in getImageSizeForOrientation() argument 995 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation() 997 return new Size(originalHeight, originalWidth); in getImageSizeForOrientation()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMathUtils.java | 373 float originalWidth, in getOriginalToScreen() argument 380 Matrix m = getCropSelectionToScreenMatrix(null, holder, (int) originalWidth, in getOriginalToScreen()
|