I\'m trying to construct a Blob from an array buffer that original comes from a binary string. It works fine in Firefox & Chrome, but I don\'t know whats wrong with Safa
In Safari you need to use the 'buffer' property on the TypedArray, i.e. this:
blob = new Blob([intArray.buffer], {type: "image/png"});
and it'll work.