Open elangosaravanan21 opened 5 years ago
Try to use TextureFitView
and get bitmap using mRenderView.getBitmap();
method.
(e.g 30 frames)
for (int i = 0; i < 30 ; i++) {
Bitmap bitmap = mRenderView.getBitmap();
if (bitmap != null) bitmapArrayList.add(bitmap);
}
After filling your bitmapArrayList
use AnimatedGifEncoder class to generate GIF file from array bitmap.
can i export file as gif?