Image::basePath

Get fully qualified path

2.9M Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Image 2, this version has reached end of life (EOL). Please consider upgrading to version 3.

public Intervention\Image\Image basePath()

Get the base path for the current image, if instance was initiated from an actual file.

Parameters

none

Return Values

Returns the absolute path of the image file as string or null if the image instance wasn't created from a file.

Examples

// create an image
$img = Image::make('public/foo.jpg');

// get file path
$path = $img->basePath();
Edit