I have a video playing, and at some point, i need to pause the video, take a capture, and use then that image, to modify it, in a paint activity. The problem is that if, i t
Try this Link ..
Hope it may help you
Screen capture
Bitmap saveBitmap = Bitmap.createBitmap(imageFrame.getWidth(), imageFrame.getHeight(), Bitmap.Config.ARGB_8888); Canvas c = new Canvas(saveBitmap); imageFrame.draw(c);
For more info try this link
& this link