0

switchEXIFを使用して向きを取得し、向きを修正するために、モバイルデバイスから画像の向きを修正しようとしていますcase。私の関数はオフラインで動作していたようですが、現在は Google Apps Engine では動作していません。これを行うための特定の機能を Google に持たせることはできますか?

関数:

$image = imagecreatefromjpeg($path);
$exif = exif_read_data($path);

if (!empty($exif['Orientation'])) {
    switch ($exif['Orientation']) {
        case 3:
            $image = imagerotate($image, 180, 0);
            break;
        case 6:
            $image = imagerotate($image, -90, 0);
            break;
        case 8:
            $image = imagerotate($image, 90, 0);
            break;
    }
    imagejpeg($image, $path);
}
4

0 に答える 0