I would like to get the uncropped contact image photo to set as full screen image background on Android 2.0 upwards. I use the following code to get a cropped thumbnail but as the photo is full screen in the gallery, how do I get access to this photo
This code gives cropped thumbnail, how do I get uncropped full screen
public static Bitmap loadContactPhoto(ContentResolver cr, long id) {
Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, id);
InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(cr, uri);
if (input == null) {
return null;
}
return BitmapFactory.decodeStream(input);
}