Home
last modified time | relevance | path

Searched refs:mHeightLimit (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/util/
DImageUtils.java401 private final int mHeightLimit; field in ImageUtils.ImageResizer
447 mHeightLimit = heightLimit; in ImageResizer()
618 final int heightLimitWithSlop = (int) (mHeightLimit * MAX_TARGET_SCALE_FACTOR); in canBeCompressed()
636 "imageWidth=%d imageHeight=%d", mWidthLimit, mHeightLimit, mByteLimit, in canBeCompressed()
679 + " limit (w=" + mWidthLimit + " h=" + mHeightLimit + ") quality=" in recodeImage()
705 if (decodedWidth > mWidthLimit || decodedHeight > mHeightLimit) { in recodeImage()
709 mHeightLimit == 0 ? 1.0f : in recodeImage()
710 (float) decodedHeight / (float) mHeightLimit); in recodeImage()