blob: 36102c9b9ae11597d13e5f23b7ad610a7d7a205d [file] [log] [blame]
alision11e8e162013-05-28 10:33:14 -04001/*
2 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3 *
4 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Additional permission under GNU GPL version 3 section 7:
21 *
22 * If you modify this program, or any covered work, by linking or
23 * combining it with the OpenSSL project's OpenSSL library (or a
24 * modified version of that library), containing parts covered by the
25 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26 * grants you additional permission to convey the resulting work.
27 * Corresponding Source for a non-source form of such a combination
28 * shall include the source code for the parts of OpenSSL used as well
29 * as that of the covered work.
30 */
31
Alexandre Lision064e1e02013-10-01 16:18:42 -040032package org.sflphone.adapters;
alisiond295ec22013-05-17 10:12:13 -040033
34import java.io.InputStream;
35
Alexandre Lision5dcd0f42013-10-04 14:33:04 -040036import org.sflphone.R;
Alexandre Lision35c3cbb2013-11-04 17:11:54 -050037import org.sflphone.model.CallContact;
Alexandre Lision5dcd0f42013-10-04 14:33:04 -040038
alisiond295ec22013-05-17 10:12:13 -040039import android.content.ContentResolver;
40import android.content.ContentUris;
41import android.content.Context;
Alexandre Lision9b53dc42013-10-04 10:13:46 -040042import android.content.res.Resources;
alisiond295ec22013-05-17 10:12:13 -040043import android.graphics.Bitmap;
44import android.graphics.BitmapFactory;
Alexandre Lision5dcd0f42013-10-04 14:33:04 -040045import android.graphics.BitmapShader;
alisiond295ec22013-05-17 10:12:13 -040046import android.graphics.Canvas;
alisiond295ec22013-05-17 10:12:13 -040047import android.graphics.Paint;
alisiond295ec22013-05-17 10:12:13 -040048import android.graphics.RectF;
Alexandre Lision5dcd0f42013-10-04 14:33:04 -040049import android.graphics.Shader;
alisiond295ec22013-05-17 10:12:13 -040050import android.net.Uri;
51import android.provider.ContactsContract;
52import android.widget.ImageView;
53
Alexandre Lision6e8931e2013-09-19 16:49:34 -040054public class ContactPictureTask implements Runnable {
alision84813a12013-05-27 17:40:39 -040055 private ImageView view;
Alexandre Lision35c3cbb2013-11-04 17:11:54 -050056 private CallContact contact;
alision84813a12013-05-27 17:40:39 -040057 private ContentResolver cr;
Alexandre Lision9b53dc42013-10-04 10:13:46 -040058
59 // private final String TAG = ContactPictureTask.class.getSimpleName();
alisiond295ec22013-05-17 10:12:13 -040060
Alexandre Lision35c3cbb2013-11-04 17:11:54 -050061 public ContactPictureTask(Context context, ImageView element, CallContact item) {
62 contact = item;
alision84813a12013-05-27 17:40:39 -040063 cr = context.getContentResolver();
64 view = element;
65 }
alisiond295ec22013-05-17 10:12:13 -040066
alision84813a12013-05-27 17:40:39 -040067 public static Bitmap loadContactPhoto(ContentResolver cr, long id) {
68 Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, id);
Alexandre Lisionc51ccb12013-09-11 16:00:30 -040069 InputStream input = ContactsContract.Contacts.openContactPhotoInputStream(cr, uri, true);
alision84813a12013-05-27 17:40:39 -040070 if (input == null) {
71 return null;
72 }
73 return BitmapFactory.decodeStream(input);
74 }
alisiond295ec22013-05-17 10:12:13 -040075
alision84813a12013-05-27 17:40:39 -040076 @Override
77 public void run() {
alision2ec64f92013-06-17 17:28:58 -040078 Bitmap photo_bmp;
Alexandre Lision9b53dc42013-10-04 10:13:46 -040079 try {
Alexandre Lision35c3cbb2013-11-04 17:11:54 -050080 photo_bmp = loadContactPhoto(cr, contact.getId());
Alexandre Lision9b53dc42013-10-04 10:13:46 -040081 } catch (IllegalArgumentException e) {
alision2ec64f92013-06-17 17:28:58 -040082 photo_bmp = null;
83 }
Alexandre Lisionc59685a2013-10-04 16:36:36 -040084
alision84813a12013-05-27 17:40:39 -040085 if (photo_bmp == null) {
Alexandre Lision9b53dc42013-10-04 10:13:46 -040086 photo_bmp = decodeSampledBitmapFromResource(view.getResources(), R.drawable.ic_contact_picture, view.getWidth(), view.getHeight());
alision84813a12013-05-27 17:40:39 -040087 }
alisiond295ec22013-05-17 10:12:13 -040088
alision84813a12013-05-27 17:40:39 -040089 int w = photo_bmp.getWidth(), h = photo_bmp.getHeight();
90 if (w > h) {
91 w = h;
92 } else if (h > w) {
93 h = w;
94 }
alisiond295ec22013-05-17 10:12:13 -040095
alision84813a12013-05-27 17:40:39 -040096 final Bitmap externalBMP = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
Alexandre Lisionc59685a2013-10-04 16:36:36 -040097
Alexandre Lision5dcd0f42013-10-04 14:33:04 -040098 BitmapShader shader;
99 shader = new BitmapShader(photo_bmp, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
Alexandre Lisionc59685a2013-10-04 16:36:36 -0400100
Alexandre Lision5dcd0f42013-10-04 14:33:04 -0400101 Paint paint = new Paint();
102 paint.setAntiAlias(true);
103 paint.setShader(shader);
alision84813a12013-05-27 17:40:39 -0400104 Canvas internalCanvas = new Canvas(externalBMP);
Alexandre Lision5dcd0f42013-10-04 14:33:04 -0400105 internalCanvas.drawOval(new RectF(0, 0, w, h), paint);
alisiond295ec22013-05-17 10:12:13 -0400106
alision84813a12013-05-27 17:40:39 -0400107 view.post(new Runnable() {
108 @Override
109 public void run() {
110 view.setImageBitmap(externalBMP);
Alexandre Lision35c3cbb2013-11-04 17:11:54 -0500111 contact.setPhoto(externalBMP);
alision84813a12013-05-27 17:40:39 -0400112 view.invalidate();
113 }
114 });
115 }
Alexandre Lisionc59685a2013-10-04 16:36:36 -0400116
117 public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId, int reqWidth, int reqHeight) {
Alexandre Lision9b53dc42013-10-04 10:13:46 -0400118
119 // First decode with inJustDecodeBounds=true to check dimensions
120 final BitmapFactory.Options options = new BitmapFactory.Options();
Alexandre Lision220a4ed2013-11-06 13:25:00 -0500121// options.inJustDecodeBounds = true;
122// BitmapFactory.decodeResource(res, resId, options);
Alexandre Lision9b53dc42013-10-04 10:13:46 -0400123
124 // Calculate inSampleSize
125 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
126
127 // Decode bitmap with inSampleSize set
128 options.inJustDecodeBounds = false;
129 return BitmapFactory.decodeResource(res, resId, options);
130 }
131
132 public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
133 // Raw height and width of image
134 final int height = options.outHeight;
135 final int width = options.outWidth;
136 int inSampleSize = 1;
137
138 if (height > reqHeight || width > reqWidth) {
139
140 // Calculate ratios of height and width to requested height and width
141 final int heightRatio = Math.round((float) height / (float) reqHeight);
142 final int widthRatio = Math.round((float) width / (float) reqWidth);
143
144 // Choose the smallest ratio as inSampleSize value, this will guarantee
145 // a final image with both dimensions larger than or equal to the
146 // requested height and width.
147 inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
148 }
149
150 return inSampleSize;
151 }
alisiond295ec22013-05-17 10:12:13 -0400152}