[Tut] Automatically Get Width & Height Of An Image

This is a discussion on [Tut] Automatically Get Width & Height Of An Image within the Development forum part of the Software/Hardware category; Automatically Get Width & Height Of An Image If you are working with file uploads, or if you simply need ...


+ Reply to Thread
Results 1 to 8 of 8

Thread: [Tut] Automatically Get Width & Height Of An Image

  1. #1
    risker is offline Banned User
    risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    2,852
    Downloads
    2
    Uploads
    2
    Rep Power
    0
    Reputation
    672

    [Tut] Automatically Get Width & Height Of An Image

    Automatically Get Width & Height Of An Image

    If you are working with file uploads, or if you simply need the width and height of an image/flash file, then this magical function in PHP is a must use: getimagesize

    If you require to get the width and height of a image or flash file, or your working with file uploads,then this is your PHP script you want to use which the function we are going to use is : Getimagesize


    PHP Code:
    <?

    //Here's our file. It's a flash animation with the name of animation.swf
    $file "Files/animation.swf";

    //To get the height and width automatically, we use the "getimagesize" function built into PHP
    //We use the list function to get the width and height values from the getimagesize function. Width goes first, height second.
    list($width$height) = getimagesize($file);

    //Display the width and height
    echo "Width = $width and Height = $height";

    ?>


    This very useful function can be used to make very simple uploaders. It also can be used to dynamically resize images. Here's how we'll resize an image to half of its size, no matter what the size is:



    PHP Code:
    <?

    //Our image file. (It could be a flash file if you wanted, but for this example, we'll use an image)
    $file "Images/Big/20303991/image.jpg";

    //Get width and height of the image.
    list($width$height) = getimagesize($file);

    //Now make the width and height half their values
    $width $width/2;
    $height $height/2;

    //Now display the image
    echo "<img src='$file' width='$width' height='$height' />";

    ?>
    I hope you've learnt something from this

  2. #2
    Wynthar's Avatar
    Wynthar is offline Advanced Hacker
    Wynthar has a spectacular aura about Wynthar has a spectacular aura about Wynthar has a spectacular aura about
    Join Date
    Feb 2009
    Location
    So Cal, USA
    Posts
    276
    Downloads
    0
    Uploads
    0
    Rep Power
    3
    Reputation
    235
    Extension to your tutorial. Some logic to reduce an image to a set height and width proportionally.

    PHP Code:
        $size getimagesize($image);
        
    $width 160// Max Width
        
    $height 120// Max Height
        
    if ($size[0] > $size[1] * $width $height ) {
            
    $height round($size[1]*width/$size[0]);
        } else {
            
    $width round($size[0]*$height/$size[1]);
        }
        echo 
    "<img src=\"".$image."\" height=\"$height\" width=\"$width\" />"
    Nice Mini Tutorial Risker.

    Peace,
    -Wynthar

  3. #3
    risker is offline Banned User
    risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    2,852
    Downloads
    2
    Uploads
    2
    Rep Power
    0
    Reputation
    672
    Thanks wyntha ^^

    +Rep

  4. #4
    Serverman's Avatar
    Serverman is offline Paranoia!

    Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of
    Join Date
    Jan 2008
    Posts
    3,030
    Downloads
    19
    Uploads
    0
    Rep Power
    9
    Reputation
    1120
    yay ^^ Finally someone else that know php ^^

    Seriously! He did!

  5. #5
    dog_keeper's Avatar
    dog_keeper is offline Teh Sexy One.

    dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of dog_keeper has much to be proud of
    Join Date
    Dec 2007
    Location
    The one and only person who lives far far away from all the people here on d3scene!
    Posts
    2,306
    Downloads
    17
    Uploads
    5
    Rep Power
    9
    Reputation
    1147
    we should make a php group <3 xD
    http://i291.photobucket.com/albums/ll304/dog_keeper/dog_keeper.jpg

  6. #6
    risker is offline Banned User
    risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    2,852
    Downloads
    2
    Uploads
    2
    Rep Power
    0
    Reputation
    672
    Quote Originally Posted by dog_keeper View Post
    we should make a php group <3 xD
    You ain't welcome zack..
    Just.. not .. welcome..

    BTW WE HAVNT TALKED MUCH LATELY
    I miss you

  7. #7
    Serverman's Avatar
    Serverman is offline Paranoia!

    Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of Serverman has much to be proud of
    Join Date
    Jan 2008
    Posts
    3,030
    Downloads
    19
    Uploads
    0
    Rep Power
    9
    Reputation
    1120
    uhm.... pwnd

    Seriously! He did!

  8. #8
    risker is offline Banned User
    risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold risker is a splendid one to behold
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    2,852
    Downloads
    2
    Uploads
    2
    Rep Power
    0
    Reputation
    672
    I declare me and server the presidents of the club ;D

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Dboyz Interactive Skillhackers