Packages

 

com.aspose.imaging.fileformats.jpeg

Class JpegLsInterleaveMode

  • java.lang.Object
    • com.aspose.ms.System.ValueType<com.aspose.ms.System.Enum>
      • com.aspose.ms.System.Enum
        • com.aspose.imaging.fileformats.jpeg.JpegLsInterleaveMode


  • public final class JpegLsInterleaveMode
    extends com.aspose.ms.System.Enum

    Defines the interleave mode for multi-component (color) pixel data.

    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.aspose.ms.System.Enum

        com.aspose.ms.System.Enum.AbstractEnum, com.aspose.ms.System.Enum.FlaggedEnum, com.aspose.ms.System.Enum.ObjectEnum, com.aspose.ms.System.Enum.SimpleEnum
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int Line
      The interleave mode is by line.
      static int None
      The data is encoded and stored as component for component: RRRGGGBBB.
      static int Sample
      The data is encoded and stored by sample.
      • Fields inherited from class com.aspose.ms.System.Enum

        EnumSeparatorCharArray
    • Method Summary

      • Methods inherited from class com.aspose.ms.System.Enum

        Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, getValues, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject, toString
    • Field Detail

      • None

        public static final int None

        The data is encoded and stored as component for component: RRRGGGBBB.

        See Also:
        Constant Field Values
      • Line

        public static final int Line

        The interleave mode is by line. A full line of each component is encoded before moving to the next line.

        See Also:
        Constant Field Values
      • Sample

        public static final int Sample

        The data is encoded and stored by sample. For color images this is the format like RGBRGBRGB.

        See Also:
        Constant Field Values