3

PHP バージョン 5.2.9

exif_read_data()EXIF 2.3 用の PHP を使用して GPS またはすべての EXIF データを抽出する際に、誰かが問題を経験した (そしておそらく解決策を見つけた) かどうか疑問に思っていました。私の会社は最近、GPS 方向データを可能にする Fujifilm Finepix XP150 を購入しました。これは、私が会社のために構築しているツールに不可欠です。

以下のコードは、私が抽出に使用しているものです。1 回目は EXIF データ全体のリストを取得し、2 回目は経度と緯度を取得しています。

$exif = exif_read_data('./images/DSCF0006.JPG', 'GPS');
echo $exif===false ? "<strong>No header data found.</strong><br />\n" : "<strong>Image contains headers</strong><br />\n";

$exif = exif_read_data('./images/DSCF0006.JPG', 0, true);
echo "<strong>IMG_20120329_104351.jpg:</strong><br />\n";
foreach ($exif as $key => $section) {
    foreach ($section as $name => $val) {
        echo "$key.$name: $val<br />\n";
    }
}
$dir = "./images/";               

function readGPSinfoEXIF($image_full_name) {
    $exif=exif_read_data($image_full_name, 0, true);
    if(!$exif || $exif['GPS']['GPSLatitude'] == '') {
        return false;
    } else {
        $lat_ref = $exif['GPS']['GPSLatitudeRef'];
        echo "Lattitude Reference: ", $lat_ref, "<br />";
        $lat = $exif['GPS']['GPSLatitude'];
        list($num, $dec) = explode('/', $lat[0]);
        $lat_s = $num / $dec;
        list($num, $dec) = explode('/', $lat[1]);
        $lat_m = $num / $dec;
        list($num, $dec) = explode('/', $lat[2]);
        $lat_v = $num / $dec;
        $lon_ref = $exif['GPS']['GPSLongitudeRef'];
        echo "Longitude Reference: ", $lon_ref, "<br />";
        $lon = $exif['GPS']['GPSLongitude'];
        list($num, $dec) = explode('/', $lon[0]);
        $lon_s = $num / $dec;
        list($num, $dec) = explode('/', $lon[1]);
        $lon_m = $num / $dec;
        list($num, $dec) = explode('/', $lon[2]);
        $lon_v = $num / $dec;

        $lat_int = ($lat_s + $lat_m / 60.0 + $lat_v / 3600.0);
        // check orientation of latitude and prefix with (-) if S
        $lat_int = ($lat_ref == "S") ? '-' . $lat_int : $lat_int;

        $lon_int = ($lon_s + $lon_m / 60.0 + $lon_v / 3600.0);
        // check orientation of longitude and prefix with (-) if W
        $lon_int = ($lon_ref == "W") ? '-' . $lon_int : $lon_int;

        $gps_int = array($lat_int, $lon_int);
        return $gps_int;
        }
}


function dirImages($dir) {
    $d = dir($dir); 
    while (false!== ($file = $d->read())) {
        $extension = substr($file, strrpos($file, '.')); 
        if($extension == ".JPG" || $extension == ".jpeg" || $extension == ".gif" | $extension == ".png") {
            $images[$file] = $file; 
        }
        $d->close();         
        return $images;
    }         

    $array = dirImages('./images/');
    $counter = 0;

    foreach ($array as $key => $image) {
        echo "<br />";
        $counter++;
        echo "<strong>".$counter."</strong>";
        echo ":  ";
        $image_full_name = $dir."/".$key;
        $image_name = $key;
        echo "<strong>".$image_name."</strong>";
        echo "<br />";
        $results = readGPSinfoEXIF($image_full_name);
        $latitude = $results[0];
        echo $latitude;
        echo ", ";
        $longitude = $results[1];
        echo $longitude;
        echo "<br />";
    }

Samsung Galaxy Nexus を使用して写真をキャプチャすると、完璧な結果が得られます。取得したカメラを使用すると、適切な GPS データとすべての EXIF データを取得できます。exif_read_data(DSCF0006.JPG) [exif_read_data]: corrupt EXIF header: maximum directory nesting level reached

それは私が間違っていることですか、それとも PHP 5 はexif_read_dataまだ EXIF 2.3 をサポートしていませんか? 私はこれを調査しました.PHP.netは次のように述べています:

exif_read_data() also validates EXIF data tags according to the EXIF
specification (» http://exif.org/Exif2-2.PDF, page 20).
4

1 に答える 1

2

同じ問題を抱えた富士フイルムのカメラもありますが、解決策を見つけたと思います。ここで PHP バグレポートを作成しました: https://bugs.php.net/bug.php?id=66443

PHP をソースからコンパイルできる場合は、exif.c ファイルの MAX_IFD_NESTING_LEVEL の値を増やします。100 から 200 に上げたところ、問題が解決したようです。

于 2014-01-08T19:47:16.657 に答える