Guest User

Untitled

a guest
May 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. app.get('/image', (req, res) => {
  2. ServerAPI.queryViewImage(options).then(image => {
  3. res.render('image', { image: Buffer.from(image, 'binary').toString('base64') });
  4. });
  5. });
  6.  
  7. { image: Buffer.from(image, 'binary').toString('base64') }
Add Comment
Please, Sign In to add comment