Does anyone know how to manipulate binary files in Javascript similar to C? I'm currently facing a critical scenario where I need to create a flipped image. Unfortunately, I don't have access to CSS, canvas, HTML, or the DOM - so I need to accomplish this using only Javascript. If there's a way to load an image into a byte array, I could iterate through each byte and generate a new image. Is it even possible to achieve this?
Thank you in advance!