Guest User

Untitled

a guest
Dec 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. response.body = "����JFIF��C..."
  2.  
  3. response.headers["content-type"] = image/jpeg
  4.  
  5. let imageData = "data:" + response.headers["content-type"] + ";base64," + new Buffer(response.body).toString('base64');
  6. // "data:image/jpg;base64,77+977+977+977+9ABBKRklGAAEBAAABAAEAAO...";
  7.  
  8. var image = new Image();
  9. image.src = response.processImage;
Add Comment
Please, Sign In to add comment