com.aspose.cad.jasperreports.tiff.enums

Enum TiffAlphaStorageEnum

    • Enum Constant Detail

      • Unspecified

        public static final TiffAlphaStorageEnum Unspecified

        The alpha is not specified and stored in the tiff file.

      • Associated

        public static final TiffAlphaStorageEnum Associated

        The alpha value is stored in premultiplied form. When alpha is restored there may be some rounding effects and restored value may be different from the original.

      • Unassociated

        public static final TiffAlphaStorageEnum Unassociated

        The alpha value is stored in unassociated form. That means that alpha restored is exactly the same as it was stored to the tiff.

    • Method Detail

      • values

        public static TiffAlphaStorageEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TiffAlphaStorageEnum c : TiffAlphaStorageEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TiffAlphaStorageEnum valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getValue

        public int getValue()
        Gets the value of enum.
        Returns:
        the value