hoainam/image-checker

检查图像格式

dev-master 2018-06-13 17:53 UTC

This package is not auto-updated.

Last update: 2024-09-21 03:31:10 UTC


README

  • 使用本地文件路径或Web链接、源或资源初始化对象
$image = new \Lego\ImageChecker\ImageChecker($path);
  • 发现文件图像格式
$image->detectFormat();

如果检查成功,将返回文件格式;否则将输出提示信息

  • 检查单个图像文件
$image->isGIF();
$image->isJPG();
$image->isPNG();