Example #1
0
 /**
  * Create instance from a strng
  *
  * @param string $imageData
  * @return ImageResize
  * @throws \exception
  */
 public static function createFromString($imageData)
 {
     $s = new self();
     $s->loadFromString($imageData);
     return $s;
 }