You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bitmap is a gif image loaded with Android's BitmapFactory.decodeStream. It seems that everything is fine with the gif image as it is properly decoded and encoded to other formats supported natively by Android.
However, the call results with the following error: A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 3220 (Thread-2250)
The error can not be caught with a catch clause in java code, the app just crashes immediately. I am attaching the gif file:
The text was updated successfully, but these errors were encountered:
I have also set saver to throw exceptions and limited memory usage, it didn't help. The same crash happened. Here is the code snippet of what I have tried:
TiffSaver.SaveOptions options = new TiffSaver.SaveOptions();
options.inThrowException = true;
options.inAvailableMemory = 10000000;
try {
TiffSaver.saveBitmap(file, bitmap, options);
} catch (Exception e) {
e.printStackTrace(); // it never gets caught
}
I am calling:
TiffSaver.saveBitmap(file, bitmap);
Bitmap is a gif image loaded with Android's
BitmapFactory.decodeStream
. It seems that everything is fine with the gif image as it is properly decoded and encoded to other formats supported natively by Android.However, the call results with the following error:
A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 3220 (Thread-2250)
The error can not be caught with a catch clause in java code, the app just crashes immediately. I am attaching the gif file:
The text was updated successfully, but these errors were encountered: