}
protected byte[] unfilterScanline(int filter_type, byte src[], byte prev[],
int BytesPerPixel) throws ImageReadException, IOException
{
ScanlineFilter filter = getScanlineFilter(filter_type, BytesPerPixel);
byte dst[] = new byte[src.length];
filter.unfilter(src, dst, prev);
return dst;
}