images – How to get dimension of Logo and Crest

Question

I want know width and height from (images) Logo and Crest, current I use standard PHP function getimagesize in my theme

/**
 *  Get dimensions for image
 */
if (!function_exists('get_image_dimensions')) {
    function get_image_dimensions($url)
    {
        $size = getimagesize($url); 
        $width = $size[0];
        $height = $size[1];

        return array('width' => $width, 'height' => $height);
    }
}

Exist native function for it ?

0
salsan 2 months 2023-03-31T11:36:05-05:00 0 Answers 0 views 0

Leave an answer

Browse
Browse