PHP What is the use of the function ‘imagetypes()’? June 14, 2015 Pramod T P Leave a comment imagetypes() gives the image format and types supported by the current version of GD-PHP.
PHP Get the width and height of an image using a function in PHP October 5, 2011 3 Comments list($width,$height)=getimagesize($_FILES[‘business_logo’][‘tmp_name’]);
Magento Image path in phtml files – Magento March 8, 2011 6 Comments <?php echo $this->getSkinUrl(‘images/your_image_name.jpg’) ?> The function will return the full path of the image given as parameter .