Maybe its late, or maybe its the sake, but i just read the docs for ArrayBuffer and cant think of a single thing it would be really useful for.
Can someone enlighten me?
Are there any uses anyone can think of that dont involve images?
|
Maybe its late, or maybe its the sake, but i just read the docs for ArrayBuffer and cant think of a single thing it would be really useful for. Can someone enlighten me? Are there any uses anyone can think of that dont involve images? |
||||
|
Basically ArrayBuffer is used to keep binary data. It can be the binary data of an image for example. In other languages buffers are proved very useful. Yes, of-course it is little difficult to understand/use than other data types. ArrayBuffer can be used to get data of jpg image (RGB bytes) and produce a png out of it by adding alpha byte (i.e. RGBA). Mozilla site has given a small use of ArrayBuffer here Scroll down to find the section I have copied the text from there: Working with complex data structures By combining a single buffer with multiple views of different types, starting at different offsets into the buffer, you can interact with data objects containing multiple data types. This lets you, for example, interact with complex data structures from WebGL, data files, or C structures you need to use while using js-ctypes. Consider this C structure:
You can access a buffer containing data in this format like this:
Then you can access, for example, the amount due with |
||||
|
|
getImageDatawhich returns many properties of the drawn image, including one calledbufferof the typeArrayBuffer– Mark Linus Jul 19 '12 at 4:46