Skip to content

Tag: synchronous

Convert Blob to binary string synchronously

I’m trying to put image in clipboard when user copies canvas selection: So I thought the right way would be to convert canvas tu dataURL, dataURL to blob and blob to binary string. Theoretically it should be possible to skip the blob, but I don’t know why. So this is what I did: But when the DataT…