aboutsummaryrefslogtreecommitdiffstats
path: root/include/Photo.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-11-04 23:50:32 -0700
committerFriendika <info@friendika.com>2010-11-04 23:50:32 -0700
commitb94cb8d234d70bc534ad1cef767b9f62d10eef26 (patch)
tree9e8cf0d529421c7b8d8e389478be8c4b196d11e6 /include/Photo.php
parent71ae08d506130e45f68cf4e09d71f3a1c2e2d782 (diff)
downloadvolse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.tar.gz
volse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.tar.bz2
volse-hubzilla-b94cb8d234d70bc534ad1cef767b9f62d10eef26.zip
add micro profile photo
Diffstat (limited to 'include/Photo.php')
-rw-r--r--include/Photo.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/include/Photo.php b/include/Photo.php
index ca9ae0703..98b11ab39 100644
--- a/include/Photo.php
+++ b/include/Photo.php
@@ -235,8 +235,18 @@ function import_profile_photo($photo,$uid,$cid) {
if($r === false)
$photo_failure = true;
+ $img->scaleImage(48);
+
+ $r = $img->store($uid, $cid, $hash, $filename, t('Contact Photos'), 6 );
+
+ if($r === false)
+ $photo_failure = true;
+
+
+
$photo = $a->get_baseurl() . '/photo/' . $hash . '-4.jpg';
$thumb = $a->get_baseurl() . '/photo/' . $hash . '-5.jpg';
+ $micro = $a->get_baseurl() . '/photo/' . $hash . '-6.jpg';
}
else
$photo_failure = true;
@@ -244,8 +254,9 @@ function import_profile_photo($photo,$uid,$cid) {
if($photo_failure) {
$photo = $a->get_baseurl() . '/images/default-profile.jpg';
$thumb = $a->get_baseurl() . '/images/default-profile-sm.jpg';
+ $micro = $a->get_baseurl() . '/images/default-profile-mm.jpg';
}
- return(array($photo,$thumb));
+ return(array($photo,$thumb,$micro));
}