HomeSort by relevance Sort by last modified time
    Searched refs:fullImage (Results 1 - 2 of 2) sorted by null

  /packages/apps/Settings/src/com/android/settings/users/
EditUserPhotoController.java 268 Bitmap fullImage = null;
272 fullImage = BitmapFactory.decodeStream(imageStream);
276 if (fullImage != null) {
277 final int squareSize = Math.min(fullImage.getWidth(),
278 fullImage.getHeight());
279 final int left = (fullImage.getWidth() - squareSize) / 2;
280 final int top = (fullImage.getHeight() - squareSize) / 2;
285 canvas.drawBitmap(fullImage, rectSource, rectDest, paint);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 333 BitmapRegionDecoder fullImage = future.get();
334 if (fullImage != null) fullImage.recycle();
339 entry.fullImage = future.get();
340 if (entry.fullImage != null) {
612 BitmapRegionDecoder fullImage = entry.fullImage;
614 if (fullImage != null) {
616 fullImage.getWidth(), fullImage.getHeight())
    [all...]

Completed in 2252 milliseconds