Home | History | Annotate | Download | only in camera

Lines Matching full:thumbnail

161     // A popup window that contains a bigger thumbnail and a list of apps to share.
163 // The bitmap of the last captured video thumbnail and the URI of the
165 private Thumbnail mThumbnail;
166 // An imageview showing showing the last captured picture thumbnail.
882 updateThumbnailButton(); // Update the last video thumbnail.
1002 mThumbnail.saveTo(new File(getFilesDir(), Thumbnail.LAST_THUMB_FILENAME));
1636 Bitmap videoFrame = Thumbnail.createVideoThumbnail(mCurrentVideoFilename,
1639 mThumbnail = new Thumbnail(mCurrentVideoUri, videoFrame, 0);
1641 // Share popup may still have the reference to the old thumbnail. Clear it.
1650 bitmap = Thumbnail.createVideoThumbnail(mVideoFileDescriptor.getFileDescriptor(),
1653 bitmap = Thumbnail.createVideoThumbnail(mCurrentVideoFilename,
1657 // MetadataRetriever already rotates the thumbnail. We should rotate
1701 // This is asynchronous, so we can't add to media store now because thumbnail
1756 mThumbnailView = (RotateImageView) findViewById(R.id.thumbnail);
1759 // Load the thumbnail from the disk.
1760 mThumbnail = Thumbnail.loadFrom(new File(getFilesDir(), Thumbnail.LAST_THUMB_FILENAME));
1765 mThumbnail = Thumbnail.getLastThumbnail(mContentResolver);
2416 // Create a thumbnail whose width is equal or bigger than that of the preview.
2420 mThumbnail = Thumbnail.createThumbnail(data, orientation, inSampleSize, uri);
2424 // Share popup may still have the reference to the old thumbnail. Clear it.