Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. YuvImage yuvimage=new YuvImage(data,ImageFormat.NV21,this.width,this.height,null);
  2. System.out.println("WidthandHeight"+yuvimage.getHeight()+"::"+yuvimage.getWidth());
  3. ByteArrayOutputStream baos=new ByteArrayOutputStream();
  4. yuvimage.compressToJpeg(new Rect(0,0,this.width,this.height),100,baos);
  5.  
  6. dos.write(baos.toByteArray());
  7.  
  8. <img [src]="domSanitizer.bypassSecurityTrustUrl(image)">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement