Reputation: 63
can anyone suggest me how to get Bitmap from Textureview and display in Imageview
I used following link but it didn't help. Advice on Android TextureView and Bitmap Rendering
Upvotes: 4
Views: 2630
Reputation: 156
Bitmap bitmap = yourTextureView.getBitmap();
yourImageView.setImageBitmap(bitmap);
Upvotes: 11