deepoceansame

Results 7 comments of deepoceansame

I added intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true) and edited onActivityResult in MergeFilesSegment.

I tried the picasso to do the filter enhancement part of issue #1044 with ``` Picasso.with(this) .load(mImagePaths.get(mCurrentImage)) .resize(780, 1200) .onlyScaleDown() .into(photoEditorView.getSource()); ``` and this causes NLP. ``` Caused by: java.lang.NullPointerException:...

I also tried adding noPlaceholder() or placeholder(photoEditorView.getSource().getDrawable()) to avoid NLP ``` Picasso.with(this) .load(mImagePaths.get(mCurrentImage)) .resize(780, 1200) .onlyScaleDown() // .placeholder(photoEditorView.getSource().getDrawable()) .noPlaceholder() .into(photoEditorView.getSource()); ``` but the filter view only show the first image.(the...

## PROs and CONs of showing scaled down version in Imageview but leaving the actual image as it is. pros of using picasso: writing less code cons: Loading image using...

I want to try working on this