I have a program which processes images with imagick in PHP:
$image = new \Imagick();
$image->readImageBlob($fileSystem->read($file));
This process raises an error on CRC errors:
IDAT: CRC error `' @ error/png.c/MagickPNGErrorHandler/1643
There is nothing wrong with this image and I want to process it just like the rest of them, I don't care that the CRC check fails.