Guest User

Untitled

a guest
Jun 25th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function createGif(width, height) {
  2. const buffer = new ArrayBuffer(24)
  3. const byteView = new Uint8Array(buffer)
  4.  
  5. // signature
  6. byteView.set([ 71, 73, 70, 56, 57, 97 ], 0)
  7.  
  8. // size
  9. byteView.set([width, width >> 8], 6)
  10. byteView.set([height, height >> 8], 8)
  11.  
  12. // jibber jabber
  13. byteView.set([44], 13)
  14. byteView.set([1], 18)
  15. byteView.set([1], 20)
  16. byteView.set([2], 23)
  17.  
  18. return btoa(String.fromCharCode.apply(null, byteView))
  19. }
Add Comment
Please, Sign In to add comment