I was working through the following tutorial, I need to create a bitmap with the following code:
cs = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
the width/height can be greater than 5000 , but that would cause an OOM error. I tried to create a seperate thread but that didnt work. Is this even possible ? Does createBitmap have a limit for width/height ?