PHP exif_read_data Illegal IFD size

前端 未结 5 1932
面向向阳花
面向向阳花 2021-02-18 22:45

I\'m working on an application where I fix orientation (if it is present) of jpeg files downloaded from an AWS bucket.

Here you can verify that this image has exif Rotat

5条回答
  •  半阙折子戏
    2021-02-18 23:45

    In production environment, the best is still to hide warnings!

    So I changed he error reporting to ERRORS only with the following line in begining of my script :

    error_reporting(E_ERROR);
    

提交回复
热议问题