Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can we get the properties (size, type, width, height) of
an image using PHP image functions?

Answer Posted / kartihk

getimagesize ( string filename [, array imageinfo])

Returns an array with 4 elements.
Index 0 contains the width of the image in pixels.
Index 1 contains the height.
Index 2 a flag indicating the type of the image. 1 = GIF, 2
= JPG, 3 = PNG, 4 = SWF, 5 = PSD, 6 = BMP, 7 = TIFF(intel
byte order), 8 = TIFF(motorola byte order, 9 = JPC, 10 =
JP2, 11 = JPX.
Index 3 is a text string with the correct height="yyy"
width="xxx" string that can be used directly in an IMG tag.

<?php
$imgp = getimagesize ("img/flag.jpg");
echo "<img src=\"img/flag.jpg\" {$imgp[3]}>";
?>

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the correct line to use within the php.ini file, to specify that 128mb would be the maximum amount of memory that a script may use?

945


What is the purpose of basename() function in PHP?

1001


What is ltrim?

881


Explain about the connective abilities of the PHP?

986


Explain about PHP filter and why it should be used?

892


Which function would you use to determine the length of a string in php?

988


Is age interval or ordinal data?

937


What language is php based on?

904


What is the use of pear in php?

951


How to find a substring from a given string in php?

974


How is it possible to know the number of rows returned in the result set?

1083


Why do we use javascript in php?

926


What is a composer in PHP?

899


Where is session value stored php?

970


Explain php parameterized functions.

942