Most of our image decoding slow down is related to how we go about converting the image data to RGB. There are a couple different ways we can improve the load time. The first easy optimization would be to avoid getting a pixel at a time, it is possible to copy a whole row of image data into an array which is supposed to be quite a bit faster.
The other optimization is to move image loading to into separate thread or at the very least delay it until paint time. A separate image loading thread would improve the user experience greatly even if the today decode time didn't improve. The content parser will stall on a large image effectively blocking the display of page content until the image is loaded. If we started painting the main text content first and repainted later for a image done event the rendering core would seem a lot faster.
Most of our image decoding slow down is related to how we go about converting the image data to RGB. There are a couple different ways we can improve the load time. The first easy optimization would be to avoid getting a pixel at a time, it is possible to copy a whole row of image data into an array which is supposed to be quite a bit faster.
The other optimization is to move image loading to into separate thread or at the very least delay it until paint time. A separate image loading thread would improve the user experience greatly even if the today decode time didn't improve. The content parser will stall on a large image effectively blocking the display of page content until the image is loaded. If we started painting the main text content first and repainted later for a image done event the rendering core would seem a lot faster.