Searched defs:cropSize (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DParameterUtils.java713 * @param cropSize size of the crop/zoom
718 * @throws IllegalArgumentException if any component of {@code cropSize} was {@code 0}
720 private static SizeF getZoomRatio(Size activeArraySize, Size cropSize) { argument
722 checkNotNull(cropSize, "cropSize must not be null");
723 checkArgumentPositive(cropSize.getWidth(), "cropSize.width must be positive");
724 checkArgumentPositive(cropSize.getHeight(), "cropSize.height must be positive");
726 float zoomRatioWidth = activeArraySize.getWidth() * 1.0f / cropSize
[all...]

Completed in 61 milliseconds