I start with a large canvas where drawImage() is used to draw data from an actual image into the HTML canvas.
Later I create thumbnails of that canvas/image that are much smaller canvas elements (for performance reasons). I simply create new canvas(es) with smaller widths and heights, and again use drawImage() using the original canvas to make the thumbnail.
In many platforms the result thumbnail image looks very pixellated (PC Chrome, PC Firefox, iOS Safari) but in others such as Mac Firefox, the resize does a much better job of interpolation.
Is there any solution that can give me consistent interpolation? For example, IE has a proprietary CSS property that can be set:
object.style.msInterpolationMode = “bicubic”;
Anything like this for other platforms? And specifically during the implicit image resize during drawImage()? Or any other creative solution is welcome