config = config('image'); } /** * @param string $imagePath * * @return string|null */ public function localPath(string $imagePath): ?string { $fullPath = realpath(Storage::path($imagePath)); if (! $fullPath || ! file_exists($fullPath)) { return null; } return $fullPath; } /** * @param string $fullPath * @param string|null $property * * @return array|string */ public function meta(string $fullPath, ?string $property = null): array|string { try { $meta = getimagesize($fullPath); if (is_null($property) === false && array_key_exists($property, $this->config['meta'])) { return $meta[$this->config['meta'][$property]]; } return getimagesize($fullPath); } catch (Exception $e) { appWarning($e); } return []; } }