Searched defs:Photo (Results 1 - 1 of 1) sorted by relevance

/gdk/samples/PhotoEditor/src/com/android/photoeditor/
H A DPhoto.java23 * Photo that is used for editing/display and should be synchronized for concurrent access.
25 public class Photo { class
30 * Factory method to ensure every Photo instance holds a non-null bitmap.
32 public static Photo create(Bitmap bitmap) {
33 return (bitmap != null) ? new Photo(bitmap) : null;
36 private Photo(Bitmap bitmap) { method in class:Photo
44 public Photo copy(Bitmap.Config config) {
46 return (copy != null) ? new Photo(copy) : null;
49 public boolean matchDimension(Photo photo) {

Completed in 40 milliseconds