芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php
configure($config); } /** * Statically initiates an Image instance from different input types * * @param mixed $data * * @return \Intervention\Image\Image * @throws \Intervention\Image\Exception\NotReadableException */ public static function make($data) { return self::getManager()->make($data); } /** * Statically creates an empty image canvas * * @param int $width * @param int $height * @param mixed $background * * @return \Intervention\Image\Image */ public static function canvas($width, $height, $background = null) { return self::getManager()->canvas($width, $height, $background); } /** * Create new cached image and run callback statically * * @param Closure $callback * @param int $lifetime * @param boolean $returnObj * * @return mixed */ public static function cache(Closure $callback, $lifetime = null, $returnObj = false) { return self::getManager()->cache($callback, $lifetime, $returnObj); } }