19 lines
599 B
CoffeeScript
19 lines
599 B
CoffeeScript
Polyfill =
|
|
init: ->
|
|
@toBlob()
|
|
$.global @toBlob
|
|
Element::matches or= Element::mozMatchesSelector or Element::webkitMatchesSelector
|
|
return
|
|
toBlob: ->
|
|
return if HTMLCanvasElement::toBlob
|
|
HTMLCanvasElement::toBlob = (cb, type, encoderOptions) ->
|
|
url = @toDataURL type, encoderOptions
|
|
data = atob url[url.indexOf(',')+1..]
|
|
# DataUrl to Binary code from Aeosynth's 4chan X repo
|
|
l = data.length
|
|
ui8a = new Uint8Array l
|
|
for i in [0...l] by 1
|
|
ui8a[i] = data.charCodeAt i
|
|
cb new Blob [ui8a], {type: type or 'image/png'}
|
|
return
|