You can use the @ operator to hide the warning without using display_errors, i.e.
$exif = @exif_read_data(..);
That's better than setting display_errors because it silences warnings/errors on the exif read function only, and does not hide other possible errors in your code.