RxGalleryFinal icon indicating copy to clipboard operation
RxGalleryFinal copied to clipboard

图片选择库,单选/多选、拍照、裁剪、压缩,自定义。包括视频选择和录制。

Results 101 RxGalleryFinal issues
Sort by recently updated
recently updated
newest added

我这边有个需求就是只要是摄像头新拍的化就要加个水印,这个需求可以满足吗?

如下 203-204行 Bitmap.createBitmap函数返回的bitmap在某些情况下就是传入的bitmapOld,两者是一样的,不能回收 Bitmap bitmapOld = bitmap; bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, false); bitmapOld.recycle();

看了源码,貌似不好自己定义一个相册样式,只能改改toolbar这些,在底部加布局好像不行,

请问 ImageRadioResultEvent 如何获取uri?

我在style里试了gallery_toolbar_bg这个属性并没有效果

``` RxGalleryFinal .with(context) .image() .multiple() .maxSize(maxSize) .imageLoader(ImageLoaderType.FRESCO) .subscribe(new RxBusResultSubscriber() { @Override protected void onEvent(ImageMultipleResultEvent event) throws Exception { } } }) .openGallery(); ``` 怎么加入裁剪啊?

``` io.reactivex.exceptions.UndeliverableException: java.lang.IncompatibleClassChangeError: The method 'void cn.finalteam.rxgalleryfinal.interactor.impl.MediaBucketFactoryInteractorImpl.cn_finalteam_rxgalleryfinal_interactor_impl_MediaBucketFactoryInteractorImpl_lambda$generateBuckets$0(io.reactivex.ObservableEmitter)' was expected to be of type direct but instead was found to be of type virtual (declaration of 'cn.finalteam.rxgalleryfinal.interactor.impl.MediaBucketFactoryInteractorImpl' appears in /data/app/tech.jiangtao.timecore-2/base.apk) ```...

RxGalleryFinal rx = RxGalleryFinal.with(context) .image() .radio() .imageLoader(ImageLoaderType.GLIDE) .subscribe(new RxBusResultSubscriber() { @Override protected void onEvent(ImageRadioResultEvent imageRadioResultEvent) throws Exception { // 图片选择的回调 } }); //自定义裁剪 rx.cropAspectRatioOptions(0, new AspectRatio("3:3", 30, 30))//方形裁剪 .crop() .openGallery();...