Package net.imagine.core

Examples of net.imagine.core.ImageInfo


      LOGGER.warn("写入本地临时文件失败", e);
      return ResultState.STORE_FAILED;
    }

    // 判断文件是否为图片格式
    ImageInfo info = operations.showImageInfo(localFile.getAbsolutePath());
    if (info == null) {
      try {
        FileUtils.forceDelete(localFile);
      } catch (IOException e) {
        LOGGER.warn("删除非图片文件失败", e);
View Full Code Here

TOP

Related Classes of net.imagine.core.ImageInfo

Copyright © 2018 www.massapicom. 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.