Class ImageFormat


  • public class ImageFormat
    extends java.lang.Object
    Image formats used to create an online processing request
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int JPG
      The lossy compression method is used.
      static int PNG
      The quality is lossless, but the size of the request will be larger
    • Constructor Summary

      Constructors 
      Constructor Description
      ImageFormat()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • PNG

        public static final int PNG
        The quality is lossless, but the size of the request will be larger
        See Also:
        Constant Field Values
      • JPG

        public static final int JPG
        The lossy compression method is used. Allows to reduce the size of the online processing request
        See Also:
        Constant Field Values
    • Constructor Detail

      • ImageFormat

        public ImageFormat()