You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the optimisation where it checks for a baseline marker and bails early is being triggered by some metadata in the file, before it finds the real encoding marker later on:
it looks like it progressive marker at 0005b00 is quickly followed by several start of scan markers at 0005b30, 0005ce0 etc. as you'd expect. The irritation is the same sequence of bytes occurs _way _ before then too, defeating the optimisation.
As this is a valid, if a somewhat grubby jpeg, the only solution I can think of is to remove the optimisations... PR to follow.
The text was updated successfully, but these errors were encountered:
This guy (and a bunch of other images on my local filesystem) trigger a false negative from the
is-progressive
cli:It was encoded with
mozjpeg
which enables-progressive
by default.exiftool
agrees:It looks like the optimisation where it checks for a baseline marker and bails early is being triggered by some metadata in the file, before it finds the real encoding marker later on:
baseline /
SOF0
markerprogressive /
SOF2
markerIt also contains sequences of bytes that match the
SOS
marker that occur before the progressive marker:start of scan /
SOS
markerit looks like it progressive marker at
0005b00
is quickly followed by several start of scan markers at0005b30
,0005ce0
etc. as you'd expect. The irritation is the same sequence of bytes occurs _way _ before then too, defeating the optimisation.As this is a valid, if a somewhat grubby jpeg, the only solution I can think of is to remove the optimisations... PR to follow.
The text was updated successfully, but these errors were encountered: