Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DBitmapTransformer.java39 Bitmap resultBitmap = Bitmap.createBitmap(fillSize.x, fillSize.y, Config.ARGB_8888); in applyFillTransformation() local
40 resultBitmap.eraseColor(Color.BLACK); in applyFillTransformation()
43 int horizontalOffset = (bitmap.getWidth() - resultBitmap.getWidth()) / 2; in applyFillTransformation()
44 int verticalOffset = (bitmap.getHeight() - resultBitmap.getHeight()) / 2; in applyFillTransformation()
50 int pixelArraySize = Math.min(resultBitmap.getWidth(), bitmap.getWidth()) in applyFillTransformation()
51 * Math.min(resultBitmap.getHeight(), bitmap.getHeight()); in applyFillTransformation()
61 Math.min(resultBitmap.getWidth(), bitmap.getWidth()) /* width */, in applyFillTransformation()
62 Math.min(resultBitmap.getHeight(), bitmap.getHeight()) /* height */); in applyFillTransformation()
65 resultBitmap.setPixels( in applyFillTransformation()
71 Math.min(resultBitmap.getWidth(), bitmap.getWidth()) /* width */, in applyFillTransformation()
[all …]
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
DTinyPlanetFragment.java350 Bitmap resultBitmap = Bitmap.createBitmap(outputSize, outputSize, in createFinalTinyPlanet() local
353 TinyPlanetNative.process(sourceBitmap, width, height, resultBitmap, in createFinalTinyPlanet()
362 resultBitmap.compress(CompressFormat.JPEG, 100, jpeg); in createFinalTinyPlanet()