Log in

View Full Version : [SOLVED]Avatar width resize with condition


danyxxx
10-05-2011, 08:56 AM
Hello,

I'm looking for a modification like this:

if the avatar width is bigger than 180px -> resize to 180px

How can be made this without affect the width smaller than 180px ???
I try it this way -->

In 'add plugins' ->

if($post['avwidth'] > '180')
{
$this->post['avwidth'] = 'width="180"';
}

But this modification , resize all avatars to 180px .
I want only the avatars that are bigger than 180px to be resized .
Please help because I don't know the language that can be used .... I used ">" for definition "bigger then" but I see that doesn't work .

Kind regards !

BirdOPrey5
10-07-2011, 12:34 AM
$post['avwidth'] contains text, not just the number... You will have to use some php string functions to strip out everything but the number and then run the greater-than comparison.

danyxxx
10-07-2011, 05:41 AM
Maybe for '180px' if the condition contain text we will make the value with text to : 180px
So?

BirdOPrey5
10-07-2011, 09:23 AM
No, 'px' is not the issue.

$post['avwidth'] is NOT a number, It is the exact same value as $this->post['avwidth']. It is a "string" and therefore it is always greater than the string value 180 you are testing against.

There are several ways to extract just the number from that string, one way is with the "substr" function:

http://php.net/manual/en/function.substr.php

Look at the last example in example 2:

$rest = substr("abcdef", -3, -1); // returns "de"

So try something like this:



$avwidth = substr($post['avwidth'], -7, -1 ); //returns just the numerical width

if(intval($avwidth) > 180)
{
$this->post['avwidth'] = 'width="180"';
}

danyxxx
10-07-2011, 12:43 PM
doesn't work :(

BirdOPrey5
10-07-2011, 03:17 PM
What hook are you using?

danyxxx
10-07-2011, 04:49 PM
postbit_display_complete

BirdOPrey5
10-07-2011, 07:17 PM
Sorry, looks like I got the substr parameters wrong... this one should work, I tested it:L


$avwidth = substr($post['avwidth'], 7 );
$avwidth = substr($avwidth, 0, -1 );

if(intval($avwidth) > 180)
{
$this->post['avwidth'] = 'width="180"';
}

danyxxx
10-07-2011, 08:45 PM
OH MY GOD , you really really rullz this kind of things :)
Thanks a lot man !
(+thanks)