Example #1
0
 /**
  * @param  $tolerance
  * @return self
  */
 public function trim($tolerance)
 {
     $this->preModify();
     $this->resource->trimimage($tolerance);
     $dimensions = $this->getDimensions();
     $this->setWidth($dimensions['width']);
     $this->setHeight($dimensions['height']);
     $this->postModify();
     return $this;
 }