Skip to content

Instantly share code, notes, and snippets.

@burakaydn
Created August 29, 2013 20:28
Show Gist options
  • Save burakaydn/6383010 to your computer and use it in GitHub Desktop.
Save burakaydn/6383010 to your computer and use it in GitHub Desktop.
public byte[] getBitmapFromLayout(FrameLayout frameLayout){
frameLayout.destroyDrawingCache();
frameLayout.setDrawingCacheEnabled(true);
frameLayout.buildDrawingCache();
Bitmap bitmap = frameLayout.getDrawingCache();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] data = stream.toByteArray();
return data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment