Catcaty
Catcaty

Reputation: 63

Screencapture:get Bitmap from Textureview and display in imageview android

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

Answers (1)

ins1der12111991
ins1der12111991

Reputation: 156

Bitmap bitmap = yourTextureView.getBitmap();
yourImageView.setImageBitmap(bitmap);

Upvotes: 11

Related Questions