Is there a way in javascript for binary file manipulation like C. I'm in a critical situation to create an fliped image. I don't have support for css, canvas, HTML, DOM. But I have to do that with only using javascript. If it allows me to load an image into a byte array I can parse each byte and will create a new image. Is there really a way.....?!
thanks in advance
If it's Yahoo! Widgets it's a different issue. The
Canvasclass allows you to load an image using 'drawImage()', then you can usescalewith negative values to flip the image. See the reference manual atCanvasfor more information.