EasyImage::resize PHP Method

resize() public method

Description of the methods for the AutoComplete feature in a IDE because it uses a design pattern "factory".
public resize ( $width = null, $height = null, $master = null )
    public function resize($width = null, $height = null, $master = null)
    {
        return $this->image()->resize($width, $height, $master);
    }

Usage Example

Ejemplo n.º 1
0
 public function ImageThumbCreate($ImageUrl, $ThumbUrl)
 {
     $ImageThumb = new EasyImage($ImageUrl);
     $ImageThumb->resize(346, 230);
     $ImageThumb->crop(320, 180);
     $ImageThumb->save($ThumbUrl);
 }
All Usage Examples Of EasyImage::resize