Android: ошибка Renderscript - невозможно обновить выделение из растрового изображения, несоответствие размеров
Я пытаюсь загрузить фотографию из Интернета и выполнить размытие, выводя размытое изображение в виде отдельного растрового изображения. Мой код выглядит так:
URL url = new URL(myUrl);
mNormalImage = BitmapFactory.decodeStream(url.openStream());
final RenderScript rs = RenderScript.create( mContext );
final Allocation input = Allocation.createFromBitmap( rs, mNormalImage, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT );
final Allocation output = Allocation.createTyped( rs, input.getType() );
final ScriptIntrinsicBlur script;
script = ScriptIntrinsicBlur.create( rs, Element.U8_4( rs ) );
script.setRadius( 3.f );
script.setInput( input );
script.forEach( output );
output.copyTo( mBlurredImage );
и я получаю ошибку:
android.renderscript.RSIllegalArgumentException:
Cannot update allocation from bitmap, sizes mismatch
Почему это происходит?
1 ответ
Решение
Где mBlurredImage
создан? Это происходит потому, что размер этого растрового изображения не соответствует входным данным. Вы должны создать его, используя что-то вроде:
Bitmap mBlurredImage =
Bitmap.createBitmap(
mNormalImage.getWidth(),
mNormalImage.getHeight(),
mNormalImage.getConfig());