Here's the fix:
in ow_libraries/wideimage/Mapper/PNG.php
find these lines:
function save($handle, $uri = null, $compression = 9, $filters = PNG_ALL_FILTERS)
{
return imagepng($handle, $uri, $compression, $filters);
and replace them with these:
function save($handle, $uri = null, $compression = 9, $filters = PNG_ALL_FILTERS)
{
if ( $compression > 9 )
{
$compression *= 9 / 100;
}
return imagepng($handle, $uri, $compression, $filters);