PHP provides a function to get the width and height of an image. "getimagesize()" This function will determine the size of image file and also will get size of flash file(swf).
Syntax
list($width, $height, $type, $attr) = getimagesize("image_name.jpg");
|—|——————— code ——————–|—|
This is a sample code, change image_name to your image name and test it!
"";
echo "Image height " .$height;
echo "
";
echo "Image type " .$type;
echo "
";
echo "Attribute " .$attr;
?>
When you run this script you will see the result like this
Image width 640
Image height 480
Image type 2
Image attribute width="640" height="480"
You will get the width, height, type of an image and also attribute of an image, I use this function in my image upload form.
Type of an image you can see from table below
Type of the image
1 = GIF 9 = JPC
2 = JPG 10 = JP2
3 = PNG 11 = JPX
4 = SWF 12 = JB2
5 = PSD 13 = SWC
6 = BMP 14 = IFF
7 = TIFF(intel byte order) 15 = WBMP
8 = TIFF(motorola byte order) 16 = XBM
Labels:
Tutorials
Get Width and Height of an Image in PHP
Rama
Saturday, April 2, 2011
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Cost-Benefit Analysis of Cloud Computing versus Desktop Grids Derrick Kondo1, Bahman Javadi1, Paul Malecot1, Franck Cappello1, David P. Ander...
-
For the recent music video for hip dubstep-rock act Nero’s first chart hit, Me & You, James May – aka Smudgethis – created a fictional ...
-
Video Traffic Genius Coupon Discount and Review. You can get the Video Traffic Genius Discount and Coupon with blow link, and the Coupon is ...
-
and computation requirements, and current cloud comput- ing and storage pricing of Amazon’s Elastic Compute Cloud (EC2) [4]. 2 Related Wo...
-
It is fun to celebrate with your class after you have spent 100 days at school together. This is a great elementary math game. In order to d...
-
> Team San Carlo Honda Gresini rider, Marco Simoncelli came within a hair's breadth of his first pole position in MotoGP after mounti...
-
Writing an effective essay prompt requires equal shares of art and science. The prompt must allow room for creative interpretation and analy...
-
Zigbee 6LoWPAN 802.15.4 Chips modules devkit & software for low power wireless sensor networks www.jennic.com Razer Cyclosa+Abyssus ...
-
• Completion. The unavailability or slowness of vol- unteer resources near the end of the computation can stretch task completion times. ...
-
Creating Attention-Grabbing Titles for Maximum Results If a web surfer likes what they see in a title, they may be interested in the rest ...
0 comments:
Post a Comment