Exemplo n.º 1
0
 public function capture($name = '', $orientation = self::AUTO)
 {
     $filename = date('Ymd-His') . '-' . preg_replace('/[^0-9a-z]+/i', '_', $name) . ".png";
     if ($this->adb->screenshot($this->savePath . $filename)) {
         $this->gd = imagecreatefromstring($this->adb->shell->output);
         $this->init($orientation);
         return $this;
     } else {
         throw new \RuntimeException('Capture failed.');
     }
 }