我正在使用下面给出的库来裁剪Gallery中的图像以及使用相机拍摄的照片:
https://github.com/rachitwatts/CircleImageCropper
当我从图库中裁剪图像时效果很好,但在裁剪使用相机拍摄的图像时会导致内存不足。
如果您可以为此问题提供解决方案或为此库提供替代方案(我见过很少其他库,但我想要一个允许将图像裁剪为圆形的库,如上所述提到的图书馆)。
答案 0 :(得分:1)
This code use manifest file in application tag in:-
android:largeHeap="true" to allocate more heap size.
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:largeHeap="true">...