Imagick::getImageInterlaceScheme is deprecated

178 Views Asked by At

Imagick::getImageInterlaceScheme is deprecated but I can't find a way to replace it in the code. I tried with Imagick::getInterlaceSchema but it returns different values for the same image.

Does anybody know what would be the proper way to replace this function calls?

Thank you!

EDIT: I also asked the maintainers directly - it turns out it will be un-deprecated in the next release: https://github.com/Imagick/imagick/issues/455

1

There are 1 best solutions below

0
On

Not sure where you got that information, nor am I sure exactly how desperate you are, but if your JPEG is progressive/interlaced it will almost certainly contain a SOF2 marker of 0xff 0xc2. If it is not interlaced it will certainly not contain that.

See p32 here.

For testing, you can make a regular JPEG with ImageMagick in Terminal like this:

magick -size 64x64 xc:black regular.jpg

And an interlaced one like this:

magick -size 64x64 xc:black -interlace line interlaced.jpg