Class ImageIOFactory


  • public class ImageIOFactory
    extends java.lang.Object
    This class implements a factory to instantiate an ImageIO component.
    Since:
    2.0
    Author:
    Davanum Srinivas
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected static org.apache.commons.logging.Log log  
    • Constructor Summary

      Constructors 
      Constructor Description
      ImageIOFactory()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ImageIO getImageIO()
      Get the ImageIO implementation.
      • Methods inherited from class java.lang.Object

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

      • log

        protected static org.apache.commons.logging.Log log
    • Constructor Detail

      • ImageIOFactory

        public ImageIOFactory()
    • Method Detail

      • getImageIO

        public static ImageIO getImageIO()
        Get the ImageIO implementation. This method follows a precedence: 1. Use the class defined by the System property axis.ImageIO. 2. If that isn't set, try instantiating MerlinIO, the JDK 1.4 ImageIO implementation. 3. If that fails try JimiIO, the JIMI ImageIO implementation. 4. If that fails, instantiate the limited JDK13IO implementation.