Пример #1
0
 /**
  * Creates a new "blank" image.
  *
  * @param int    $width The width of the image.
  * @param int    $height The height of the image.
  * @param string $background The image background.
  *
  * @return $this
  */
 public function newImage($width, $height, $background = 'white')
 {
     $this->resource->createNew($width, $height, $background);
     return $this;
 }