Closed
Description
I have this strange issue, but just with the PHP extension, not with the vips commandline (couldn't recreate the issue there)
The following worked fine with 8.9
$vips = VipsImage::newFromFile("foo.jpg", ["autorotate" => true]);
$vips->jpegsave("result.jpg");
in 8.10 I get a several
(banana:278): VIPS-WARNING **: error in tile 0 x 208
VipsJpeg: out of order read at line 3024
But if I set the "access" to "sequential", like this
$vips = VipsImage::newFromFile("foo.jpg", ["autorotate" => true, "access" => 'sequential']);
$vips->jpegsave("result.jpg");
it works fine. I'd expect it the other way round with that error, that it should have access = random (which is the default, AFAIK).
Any idea, what could be wrong here? Just setting "access" to "sequential" everywhere might also not be the right choice for me.