PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How can I find the width and height of an image resource?


It is often useful to know the width and height of an image resource. This can be achieved with the functions imagesx and imagesy, like this:

<?php
$img 
imagecreatetruecolor(400100);
echo 
imagesx($img); // 400
echo imagesy($img); // 100
?>





Comment on this Question and Answer >>>

ASK A QUESTION

More images PHP Questions

How can I rotate an image?

how to rotate an image using php code?

How can I find the colour of a pixel of an image?

How to display multiple images in a form path came from database and images are store in Image folder(assume 10 images are uploded that i want to display)

How can I add text to an image?



Custom Search