Lines Matching defs:height

852      * multiplying the preview image width, height, and bytes per pixel. The
853 * width and height can be read from
892 * width, height, and bytes per pixel. The width and height can be
910 * queue. The size should be width * height * (bits per pixel) / 8. An
975 yuvBuilder.setY(previewSize.height);
1036 previewSize.height != previewAllocation.getType().getY()) {
1044 previewSize.height);
1750 * // UI coordinates range from (0, 0) to (width, height).
1878 newPreviewSize.height != currentPreviewSize.height) {
1935 * Image size (width and height dimensions).
1945 * @param h the photo height (pixels)
1949 height = h;
1955 * @return {@code true} if the width and height of {@code obj} is the
1964 return width == s.width && height == s.height;
1968 return width * 32713 + height;
1972 /** height of the picture */
1973 public int height;
1992 * with zero or negative width or height are not allowed.</p>
2047 * allowed. Bounds with zero or negative width or height are not
2099 private static final String KEY_JPEG_THUMBNAIL_HEIGHT = "jpeg-thumbnail-height";
2619 * The sides of width and height are based on camera orientation. That
2631 * @param height the height of the pictures, in pixels
2637 public void setPreviewSize(int width, int height) {
2638 String v = Integer.toString(width) + "x" + Integer.toString(height);
2645 * @return a Size object with the width and height setting
2685 * Returns the preferred or recommended preview size (width and height)
2689 * and height of the preview size should not be larger than that of
2694 * @return the preferred preview size (width and height) in pixels for
2706 * applications set both width and height to 0, EXIF will not contain
2713 * @param height the height of the thumbnail, in pixels
2716 public void setJpegThumbnailSize(int width, int height) {
2718 set(KEY_JPEG_THUMBNAIL_HEIGHT, height);
2724 * @return a Size object with the height and width setting for the EXIF
2895 * the preview size is <var>width x height</var>, then the following
2903 * ySize = yStride * height;
2904 * uvSize = uvStride * height / 2;
2970 * @param height the height for pictures, in pixels
2974 public void setPictureSize(int width, int height) {
2975 String v = Integer.toString(width) + "x" + Integer.toString(height);
2982 * @return a Size object with the height and width setting
3834 * (1000, 1000) is the lower right point. The width and height of focus
3903 * point. (1000, 1000) is the lower right point. The width and height of
4155 String height = str.substring(pos + 1);
4157 Integer.parseInt(height));