mirror of
https://github.com/Intervention/image.git
synced 2025-08-26 23:35:12 +02:00
added properties documentation
This commit is contained in:
@@ -7,16 +7,58 @@ use Illuminate\Filesystem\Filesystem;
|
|||||||
|
|
||||||
class Image
|
class Image
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* The image resource identifier of current image
|
||||||
|
* @var resource
|
||||||
|
*/
|
||||||
public $resource;
|
public $resource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Type of current image
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $type;
|
public $type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Width of current image
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $width;
|
public $width;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Height of current image
|
||||||
|
* @var integer
|
||||||
|
*/
|
||||||
public $height;
|
public $height;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Directory path of current image
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $dirname;
|
public $dirname;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trailing name component of current image filename
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $basename;
|
public $basename;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* File extension of current image filename
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
public $extension;
|
public $extension;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Combined filename (basename and extension)
|
||||||
|
* @var [type]
|
||||||
|
*/
|
||||||
public $filename;
|
public $filename;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instance of Illuminate\Filesystem\Filesystem
|
||||||
|
* @var Filesystem
|
||||||
|
*/
|
||||||
protected $filesystem;
|
protected $filesystem;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user