Searched defs:imageHeight (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemUtils.java82 * @param imageHeight Image height.
91 int imageHeight, int widthBound, int heightBound, int orientation,
98 int dummy = imageHeight;
99 imageHeight = imageWidth;
106 int targetHeight = imageHeight;
90 loadImageThumbnailFromStream(InputStream stream, int imageWidth, int imageHeight, int widthBound, int heightBound, int orientation, int maximumPixels) argument
/packages/apps/Launcher3/src/com/android/launcher3/compat/
H A DAppWidgetManagerCompatV16.java91 int imageHeight) {
90 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageHeight) argument
H A DAppWidgetManagerCompatVL.java112 int imageHeight) {
123 final int top = Math.max(imageHeight - badgeSize, badgeMinTop);
111 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageHeight) argument
H A DAppWidgetManagerCompat.java82 int imageHeight);
81 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageHeight) argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageStraighten.java207 int imageHeight, int viewWidth, int viewHeight) {
208 tmp.set(0, 0, imageHeight, imageWidth);
217 tmp.set(0, 0, imageHeight, imageWidth);
218 iw = imageHeight;
221 tmp.set(0, 0, imageWidth, imageHeight);
223 ih = imageHeight;
232 imageHeight, viewWidth, viewHeight);
237 FilterCropRepresentation.findNormalizedCrop(mCrop, imageWidth, imageHeight);
252 int imageHeight = image.getHeight();
258 imageHeight, viewWidt
206 updateCurrentCrop(Matrix m, GeometryHolder h, RectF tmp, int imageWidth, int imageHeight, int viewWidth, int viewHeight) argument
[all...]
H A DImageShow.java492 private Rect computeImageBounds(int imageWidth, int imageHeight) { argument
493 float scale = GeometryMathUtils.scale(imageWidth, imageHeight,
497 float h = imageHeight * scale;
/packages/apps/Messaging/jni/
H A DGifTranscoder.cpp402 int imageHeight,
409 ASSERT(top + height <= imageHeight, "Rectangle is outside image bounds");
400 fillRect(ColorARGB* renderBuffer, int imageWidth, int imageHeight, int left, int top, int width, int height, ColorARGB color) argument
/packages/apps/Gallery/src/com/android/camera/
H A DGalleryPicker.java621 int imageWidth, int widthPadding, int imageHeight,
628 int yPos = (row * (imageHeight + heightPadding)) - offsetY;
644 int imageHeight = height;
650 imageHeight = (imageHeight - padding) / 2; // per row and column
705 imageHeight, true, Util.RECYCLE_INPUT);
708 Bitmap thumb = Bitmap.createBitmap(imageWidth, imageHeight,
714 mCellOutline.setBounds(0, 0, imageWidth, imageHeight);
717 placeImage(thumb, c, pdpaint, imageWidth, padding, imageHeight,
620 placeImage(Bitmap image, Canvas c, Paint paint, int imageWidth, int widthPadding, int imageHeight, int heightPadding, int offsetX, int offsetY, int pos) argument
/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java975 * @param imageHeight The original height.
983 public static Point resizeToFill(int imageWidth, int imageHeight, int imageRotation, argument
988 imageWidth = imageHeight;
989 imageHeight = savedWidth;
998 if (imageWidth != 0 && imageHeight != 0) {
999 if (imageWidth * boundHeight > boundWidth * imageHeight) {
1000 p.y = imageHeight * p.x / imageWidth;
1002 p.x = imageWidth * p.y / imageHeight;
1006 + imageWidth + "|" + imageHeight + "|" + boundWidth + "|"

Completed in 712 milliseconds