views:

27

answers:

1

Hi,

Is there any way to draw an image from a color array using VML? I have the array of color codes for every pixel in a compressed order. I want to render this with VML using a method like putImageData() in canvas.

A: 

There's no similar function for VML. You can load an image using <v:image> with a src attribute, but there's no support for anything like the canvas ImageData functions at all. Even ExplorerCanvas doesn't support them (for the same reason).

Andy E