Ashish Srivastava
Ashish Srivastava

Reputation: 307

PHP- Get file type by URL

I want to get the file type (eg. image/gif) by URL using PHP.I had tried

<?php
$image_path="http://fc04.deviantart.net/fs71/f/2010/227/4/6/PNG_Test_by_Destron23.png";
exif_imagetype($image_path);
?>

The above code gave me a blank page and the following code returned "3":

<?php
$image_path="http://fc04.deviantart.net/fs71/f/2010/227/4/6/PNG_Test_by_Destron23.png";
echo exif_imagetype($image_path);
?>

Where am I going wrong? Solved: using Fileinfo to fetch content type

Upvotes: 15

Views: 45631

Answers (7)

pgee70
pgee70

Reputation: 3974

Here is a PHP function I came up with:

/**
 * @param $image_path
 * @return string|null
 */
function get_image_mime_type(string $image_path):?string
{
    $mimes  = [
        IMAGETYPE_GIF => "image/gif",
        IMAGETYPE_JPEG => "image/jpg",
        IMAGETYPE_PNG => "image/png",
        IMAGETYPE_SWF => "image/swf",
        IMAGETYPE_PSD => "image/psd",
        IMAGETYPE_BMP => "image/bmp",
        IMAGETYPE_TIFF_II => "image/tiff",
        IMAGETYPE_TIFF_MM => "image/tiff",
        IMAGETYPE_JPC => "image/jpc",
        IMAGETYPE_JP2 => "image/jp2",
        IMAGETYPE_JPX => "image/jpx",
        IMAGETYPE_JB2 => "image/jb2",
        IMAGETYPE_SWC => "image/swc",
        IMAGETYPE_IFF => "image/iff",
        IMAGETYPE_WBMP => "image/wbmp",
        IMAGETYPE_XBM => "image/xbm",
        IMAGETYPE_ICO => "image/ico"];

    if (($image_type = exif_imagetype($image_path))
        && (array_key_exists($image_type ,$mimes)))
    {
        return $mimes[$image_type];
    }
    return NULL;
}

Upvotes: 18

Jehad Ahmad Jaghoub
Jehad Ahmad Jaghoub

Reputation: 1383

the best way for my understanding

if (!function_exists('getUrlMimeType')) {
    function getUrlMimeType($url)
    {
        $buffer = file_get_contents($url);
        $finfo = new finfo(FILEINFO_MIME_TYPE);
        return $finfo->buffer($buffer);
    }
}

is to create function depend on finfo class

Upvotes: 16

Avis
Avis

Reputation: 505

<?php
 $image_path="http://fc04.deviantart.net/fs71/f/2010/227/4/6/PNG_Test_by_Destron23.png";
 echo exif_imagetype($image_path);
?>

It returned 3 because png response type as maciej said.

Try this to get like this image/png:

echo mime_content_type($image_path);

Try this:

$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension   
echo finfo_file($finfo, $image_path) . "\n";
finfo_close($finfo);

Upvotes: 9

Gentle153
Gentle153

Reputation: 327

You are not going wrong anywhere. exif_imagetype returns the value of one of the image type constants: http://php.net/manual/en/image.constants.php

If you would like to convert this to an extension string, you could use a switch statement:

$typeString = null;
$typeInt = exif_imagetype($image_path);
switch($typeInt) {
  case IMG_GIF:
    $typeString = 'image/gif';
    break;
  case IMG_JPG:
    $typeString = 'image/jpg';
    break;
  case IMG_JPEG:
    $typeString = 'image/jpeg';
    break;
  case IMG_PNG:
    $typeString = 'image/png';
    break;
  case IMG_WBMP:
    $typeString = 'image/wbmp';
    break;
  case IMG_XPM:
    $typeString = 'image/xpm';
    break;
  default: 
    $typeString = 'unknown';
}

You may want to change the order to most to least frequently expected for better performance.

Upvotes: 6

Maciej Asembler
Maciej Asembler

Reputation: 674

3 is image type response for PNG image. See: http://php.net/manual/en/function.exif-imagetype.php

Upvotes: 1

Grice
Grice

Reputation: 1375

exif_imagetype returns the image type. The response, 3, indicates it is IMAGETYPE_PNG, the correct response.

Upvotes: 2

Alex Howansky
Alex Howansky

Reputation: 53523

In the first example, you're getting a blank page because you're not doing anything with the return value from the function call. In the second example, you're getting a valid response. See the manual page for exif_imagetype() for a list of what the values mean.

Upvotes: 3

Related Questions