forked from friendica/friendica-addons
Just some code beautification
This commit is contained in:
parent
72b8bc815c
commit
ac5db74a8b
|
@ -252,10 +252,12 @@ function catavatar_content(App $a)
|
|||
*
|
||||
**/
|
||||
|
||||
function build_cat($seed='', $size=0){
|
||||
|
||||
function build_cat($seed = '', $size = 0)
|
||||
{
|
||||
// init random seed
|
||||
if($seed) srand( hexdec(substr(md5($seed),0,6)) );
|
||||
if ($seed) {
|
||||
srand(hexdec(substr(md5($seed),0,6)));
|
||||
}
|
||||
|
||||
// throw the dice for body parts
|
||||
$parts = array(
|
||||
|
@ -277,7 +279,9 @@ function build_cat($seed='', $size=0){
|
|||
$file = dirname(__FILE__).'/avatars/'.$part.'_'.$num.'.png';
|
||||
|
||||
$im = @imagecreatefrompng($file);
|
||||
if(!$im) die('Failed to load '.$file);
|
||||
if (!$im) {
|
||||
die('Failed to load '.$file);
|
||||
}
|
||||
imageSaveAlpha($im, true);
|
||||
imagecopy($cat,$im,0,0,0,0,CATAVATAR_SIZE,CATAVATAR_SIZE);
|
||||
imagedestroy($im);
|
||||
|
@ -286,9 +290,15 @@ function build_cat($seed='', $size=0){
|
|||
// scale image
|
||||
if ($size > 3 && $size < 7) {
|
||||
switch ($size) {
|
||||
case 4: $size = 175; break;
|
||||
case 5: $size = 80; break;
|
||||
case 6: $size = 48; break;
|
||||
case 4:
|
||||
$size = 175;
|
||||
break;
|
||||
case 5:
|
||||
$size = 80;
|
||||
break;
|
||||
case 6:
|
||||
$size = 48;
|
||||
break;
|
||||
}
|
||||
|
||||
$dest = imagecreatetruecolor($size, $size);
|
||||
|
@ -311,5 +321,3 @@ function build_cat($seed='', $size=0){
|
|||
imagejpeg($cat, NULL, 90);
|
||||
imagedestroy($cat);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue