mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Minor changes
This commit is contained in:
		| @@ -1,53 +0,0 @@ | ||||
| package eu.kanade.mangafeed.ui.reader.decoder; | ||||
|  | ||||
| import android.content.Context; | ||||
| import android.graphics.Bitmap; | ||||
| import android.graphics.Point; | ||||
| import android.graphics.Rect; | ||||
| import android.net.Uri; | ||||
|  | ||||
| import com.davemorrissey.labs.subscaleview.decoder.ImageRegionDecoder; | ||||
|  | ||||
| import rapid.decoder.BitmapDecoder; | ||||
|  | ||||
| /** | ||||
|  * A very simple implementation of {@link com.davemorrissey.labs.subscaleview.decoder.ImageRegionDecoder} | ||||
|  * using the RapidDecoder library (https://github.com/suckgamony/RapidDecoder). For PNGs, this can | ||||
|  * give more reliable decoding and better performance. For JPGs, it is slower and can run out of | ||||
|  * memory with large images, but has better support for grayscale and CMYK images. | ||||
|  * | ||||
|  * This is an incomplete and untested implementation provided as an example only. | ||||
|  */ | ||||
| public class RapidImageRegionDecoder implements ImageRegionDecoder { | ||||
|  | ||||
|     private BitmapDecoder decoder; | ||||
|  | ||||
|     @Override | ||||
|     public Point init(Context context, Uri uri) throws Exception { | ||||
|         decoder = BitmapDecoder.from(context, uri); | ||||
|         decoder.useBuiltInDecoder(true); | ||||
|         return new Point(decoder.sourceWidth(), decoder.sourceHeight()); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public synchronized Bitmap decodeRegion(Rect sRect, int sampleSize) { | ||||
|         try { | ||||
|             return decoder.reset().region(sRect).scale(sRect.width()/sampleSize, sRect.height()/sampleSize).decode(); | ||||
|         } catch (Exception e) { | ||||
|             return null; | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public boolean isReady() { | ||||
|         return decoder != null; | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void recycle() { | ||||
|         BitmapDecoder.destroyMemoryCache(); | ||||
|         BitmapDecoder.destroyDiskCache(); | ||||
|         decoder.reset(); | ||||
|         decoder = null; | ||||
|     } | ||||
| } | ||||
| @@ -3,6 +3,7 @@ package eu.kanade.mangafeed.ui.reader.viewer.base; | ||||
| import android.view.MotionEvent; | ||||
|  | ||||
| import com.davemorrissey.labs.subscaleview.decoder.ImageRegionDecoder; | ||||
| import com.davemorrissey.labs.subscaleview.decoder.RapidImageRegionDecoder; | ||||
| import com.davemorrissey.labs.subscaleview.decoder.SkiaImageRegionDecoder; | ||||
|  | ||||
| import java.util.List; | ||||
| @@ -10,7 +11,6 @@ import java.util.List; | ||||
| import eu.kanade.mangafeed.data.source.model.Page; | ||||
| import eu.kanade.mangafeed.ui.base.fragment.BaseFragment; | ||||
| import eu.kanade.mangafeed.ui.reader.ReaderActivity; | ||||
| import eu.kanade.mangafeed.ui.reader.decoder.RapidImageRegionDecoder; | ||||
|  | ||||
| public abstract class BaseReader extends BaseFragment { | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user