Reputation: 1246
I'm using OpenLayers with a large image (7000x5500) as a map representation. On FF and Chrome, I'm able to drag/drop/zoom the image normally. However, when I open it on IE 8, just rendering the image (shown in a 300 x 300 div) causes major speed issues. The site gets awfully slow. Maybe it has something to do with rescaling the image, but it works fine in other browsers. There is only one request for the image being triggered, so multiple requests don't seem to be the cause. Any tips on how to improve IE 8 performance when handling such large images?
Upvotes: 1
Views: 965
Reputation: 1246
In case someone is wondering, we solved this by pre-processing the image and decreasing its resolution in a http handler. No way IE8 could handle a 7000x5500 image properly.
Upvotes: 2