Package 

Class SubSamplingImageKt

    • Method Summary

      Modifier and Type Method Description
      final static Unit SubSamplingImage(SubSamplingImageState state, String contentDescription, Modifier modifier, Float alpha, ColorFilter colorFilter) An Image composable that can render large bitmaps by diving them into tiles so that they can be loaded lazily.
      final static Unit SubSamplingImage(SubSamplingImageState state, Modifier modifier, String contentDescription, Float alpha, ColorFilter colorFilter)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • SubSamplingImage

        @Composable() final static Unit SubSamplingImage(SubSamplingImageState state, String contentDescription, Modifier modifier, Float alpha, ColorFilter colorFilter)

        An Image composable that can render large bitmaps by diving them into tiles so that they can be loaded lazily. This ensures that images maintain their intricate details even when fully zoomed in, without causing any OutOfMemory exceptions.

        SubSamplingImage is automatically used by me.saket.telephoto.zoomable.ZoomableImage.