Get DPI value of an image using PHP

This is a simple function I wrote to get a DPI (dot per inch) value from an image using PHP only, without the need of ImageMagick nor GD library. The script was inspired from denisb post (the third post). At the forum, he described how to get the DPI value stored within the file.

function get_dpi($filename){

// open the file and read first 20 bytes.
$a = fopen($filename,'r');
$string = fread($a,20);
fclose($a);

// get the value of byte 14th up to 18th
$data = bin2hex(substr($string,14,4));
$x = substr($data,0,4);
$y = substr($data,4,4);
return array(hexdec($x),hexdec($y));

}

// output the result:
print_r(get_dpi2('filename.jpg'));
?>

I have tried this function to get DPI value of an image that I generated using Photoshop and worked as expected but failed to get DPI value from an image from any digital camera. It returned weird value instead.

Any idea why this function failed to retrieve DPI value from image that generated by digital camera? Please share your opinion.

3 Responses to “Get DPI value of an image using PHP”

  1. tom Says:

    hi,
    this is an excellent little script that i found from the forum you mention! for some reason though i am getting the values 100, 100 returned from both a 72dpi file and a 300 dpi file…?
    Would you know why this is at all? I have resized both images in photoshop and saved out at the DPI’s mentioned.

    Any help would be greatly appreciated!

    Thanks,

    Tom

  2. moe Says:

    hi,
    i know this is way offfff topic, but you think you know how to get a Snap shot of a website in different sizes? if so, could you post it on as a blog or maybe give some ideas and point us to few tutorials that maybe helpful?

    thanks a bunch!

  3. PHP ile resim dosyas?n?n DPI bilgisini alal?m - Günlük Haftal?k Ayl?k Says:

    [...] Kaynak: Get DPI value of an image using PHP [...]

Leave a Reply