June 30, 2009, 1:42 am
Every now and then we need a simple function that could take any number in bytes taken from filesize() or other source and convert it for better reading. Here are some functions that do the exact same thing but with different methods.
Method 1: Very simple straight forward stuff. Can be customized to different sizes with different limits.
1
2
3
4
5
6
7
8
| function convert_size($num)
{
if ($num >= 1073741824) $num = round($num / 1073741824 * 100) / 100 .' gb';
else if ($num >= 1048576) $num = round($num / 1048576 * 100) / 100 .' mb';
else if ($num >= 1024) $num = round($num / 1024 * 100) / 100 .' kb';
else $num .= ' b';
return $num;
} |
Method 2: (best way) More advance using a loop to count size depth. Very small and compact all the way to YB. Unlike method 1 it runs by a single constant.
1
2
3
4
5
6
7
8
9
10
| function convert_size($size){
$i=0;
$iec = array(" B", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
while (($size/1024)>1)
{
$size=round($size/1024,2);
$i++;
}
return substr($size,0,strpos($size,'.')+4).$iec[$i];
} |
As you see if you wish to have a large range conversion using the first method then you will have lots of IF statements unlike method two. Iif you are using method one you have more simple flexibility to have different off-sets for sizes.
Method two uses a single while loop to take the size to its lowest by every 1024 and each time it loops it reduces a single multiple of 1024 and counts how many times it reduces it, and at the end shows the corresponding unit size from the array using that count. The array must have the unit sizes in correct order. Good thing about this is if you give it a number that is like 7^20 (that’s 20 zeroes), then it still works just fine as long as the array has that many unit sizes.
June 10, 2009, 10:22 pm
I needed something simple to grab images from MySQL database and display them. Slowly it grew into a very handy class.
This class can be used to manipulate images stored in files or in a MySQL database. It can read images from files and store them in a MySQL database table, and vice-versa. The class can also convert images between GIF, JPEG and PNG formats, as well resize the images to create thumbnails.
Documentation:
Coming Soon…
June 6, 2009, 2:45 pm
Log time ago I wrote this function for my friend’s gallery website. The function is straight forward and uses the GD library of PHP. You may resize the image by giving it the maximum width and height you want the thumbnail to have. The function acts as an extension of the GD library so to speak, so you have to pass the image resource. An additional argument may be passed stating if you want the thumbnail to be square or not, by default it is false. If it is true the width:height ratio will not be change, it only fills the empty space with black color and places the thumbnail image in the center of the square.
imagethumb(image resource, max width, max height, fill to make square)
1 – (GD image resource) Straight forward teh image resource loaded by GD library.
2 – (int) maximum width of thumbnail
3 – (int) maximum width of thumbnail
4 – (true/false) make thumbnail square
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| function imagethumb($old_im, $limit_w = 100, $limit_h = 100, $fill = false)
{
//get original dimensions
$old_w = imagesx($old_im);
$old_h = imagesy($old_im);
//first resize by width if overflow else set old to new
if($old_w > $limit_w)
{
//get reduction percent
$reduce_percent = ($limit_w / $old_w) * 100;
//set new w and h
$new_w = ($old_w / 100) * $reduce_percent;
$new_h = ($old_h / 100) * $reduce_percent;
}
else
{
//set as the old dimensions
$new_w = $old_w;
$new_h = $old_h;
}
//second resize by height if still overflows
if($new_h > $limit_h)
{
//get reduction percent
$reduce_percent = ($limit_h / $new_h) * 100;
//set new w and h
$new_w = ($new_w / 100) * $reduce_percent;
$new_h = ($new_h / 100) * $reduce_percent;
}
if($fill == true)
{
//height offset picture, to keep centered
if($new_h < $limit_h)
$h_offset = floor(($limit_h - $new_h)/2);
else
$h_offset = 0;
//width offset picture, to keep centered
if($new_w < $limit_w)
$w_offset = floor(($limit_w - $new_w)/2);
else
$w_offset = 0;
//make new image and copy to it
$new_im = imagecreatetruecolor($limit_w, $limit_h);
}
else
$new_im = imagecreatetruecolor($new_w, $new_h);
imagecopyresampled($new_im, $old_im, $w_offset, $h_offset, 0, 0, $new_w, $new_h, $old_w, $old_h);
return $new_im;
} |