Package is.us.thirdparty

Examples of is.us.thirdparty.ImageInfo.check()


   */
  public static ImageInfo imageInfo( byte[] imageData ) {
    ImageInfo ii = new ImageInfo();
    ii.setInput( new ByteArrayInputStream( imageData ) );

    if( !ii.check() ) {
      return null;
    }

    return ii;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.