RapidImageRegionDecoder.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.davemorrissey.labs.subscaleview.decoder;
  2. import android.content.Context;
  3. import android.graphics.Bitmap;
  4. import android.graphics.Point;
  5. import android.graphics.Rect;
  6. import android.net.Uri;
  7. import rapid.decoder.BitmapDecoder;
  8. /**
  9. * A very simple implementation of {@link com.davemorrissey.labs.subscaleview.decoder.ImageRegionDecoder}
  10. * using the RapidDecoder library (https://github.com/suckgamony/RapidDecoder). For PNGs, this can
  11. * give more reliable decoding and better performance. For JPGs, it is slower and can run out of
  12. * memory with large images, but has better support for grayscale and CMYK images.
  13. *
  14. * This is an incomplete and untested implementation provided as an example only.
  15. */
  16. public class RapidImageRegionDecoder implements ImageRegionDecoder {
  17. private BitmapDecoder decoder;
  18. @Override
  19. public Point init(Context context, Uri uri) throws Exception {
  20. decoder = BitmapDecoder.from(context, uri);
  21. decoder.useBuiltInDecoder(true);
  22. int width = decoder.sourceWidth();
  23. int height = decoder.sourceHeight();
  24. if (width == 0 || height == 0)
  25. throw new Exception("Rapid image decoder returned empty image - image format may not be supported");
  26. return new Point(width, height);
  27. }
  28. @Override
  29. public synchronized Bitmap decodeRegion(Rect sRect, int sampleSize) {
  30. try {
  31. return decoder.reset().region(sRect).scale(sRect.width() / sampleSize, sRect.height() / sampleSize).decode();
  32. } catch (Exception e) {
  33. throw new RuntimeException("Rapid image decoder returned null bitmap - image format may not be supported");
  34. }
  35. }
  36. @Override
  37. public boolean isReady() {
  38. return decoder != null;
  39. }
  40. @Override
  41. public void recycle() {
  42. BitmapDecoder.destroyMemoryCache();
  43. BitmapDecoder.destroyDiskCache();
  44. decoder.reset();
  45. decoder = null;
  46. }
  47. }