Home | History | Annotate | Download | only in ui

Lines Matching refs:quality

223                 int quality = MessageUtils.IMAGE_COMPRESSION_QUALITY;
249 // In case that the image byte size is still too large reduce the quality in
250 // proportion to the desired byte size. Should the quality fall below
254 b.compress(CompressFormat.JPEG, quality, os);
257 int reducedQuality = quality * byteLimit / jpgFileSize;
259 quality = reducedQuality;
262 Log.v(TAG, "getResizedImageData: compress(2) w/ quality=" + quality);
266 b.compress(CompressFormat.JPEG, quality, os);
281 + " quality=" + quality);