이미지 프로세싱 중에 반복되는 비트맵 작업 시, Out of Memory 발생간단한 해결책은 GlideBitmapPool 사용으로 좀 더 안정성 있게 앱을 구동했음 ^^v 1.기존 소스와 Android Profiler mBitmap = Bitmap.createBitmap(mWidth, mHeight, Bitmap.Config.ARGB_8888); mBitmap.copyPixelsFromBuffer(IntBuffer.wrap(iat)); 반복된 작업에 메모리가 증가하면서 앱이 중지됨. ^^;; 2.GlideBitmapPool 적용 소스와 Android Profiler mBitmap = GlideBitmapPool.getBitmap(mWidth, mHeight, Bitmap.Config.ARGB_8888);..