Class PHImageRequestOptionsResizeMode


  • public final class PHImageRequestOptionsResizeMode
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Exact
      same as above but also guarantees the delivered image is exactly targetSize (must be set when a normalizedCropRect is specified)
      static long Fast
      use targetSize as a hint for optimal decoding when the source image is a compressed format (i.e. subsampling), the delivered image may be larger than targetSize
      static long None
      no resize
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • Fast

        public static final long Fast
        use targetSize as a hint for optimal decoding when the source image is a compressed format (i.e. subsampling), the delivered image may be larger than targetSize
        See Also:
        Constant Field Values
      • Exact

        public static final long Exact
        same as above but also guarantees the delivered image is exactly targetSize (must be set when a normalizedCropRect is specified)
        See Also:
        Constant Field Values