+2009-09-13 6.5.6-0 Cristy <quetzlzacatenango@image...>
+ * Fix ICON alpha mask scanline pad.
+
2009-09-11 6.5.5-10 Cristy <quetzlzacatenango@image...>
* Return the global maximum threads to avoid the rare cache view assertions.
* Throw an end-of-file exception for truncated raw gray images.
q[x+bit].opacity=(Quantum) (((byte & (0x80 >> bit)) != 0) ?
TransparentOpacity : OpaqueOpacity);
}
- for (x=0; x < (long) scanline_pad; x++)
- (void) ReadBlobByte(image);
+ if ((image->columns % 32) != 0)
+ for (x=0; x < (long) ((32-(image->columns % 32))/8); x++)
+ (void) ReadBlobByte(image);
if (SyncAuthenticPixels(image,exception) == MagickFalse)
break;
}