Image::width

Get width of current image

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 width()

Returns the width in pixels of the current image.

Parameters

none

Return Values

Width of current image in pixels as integer

Examples

// read width of image
$width = Image::make('public/foo.jpg')->width();

See also

Edit