diff --git a/CommandOptions.php b/CommandOptions.php index 466c947..8b34d4f 100644 --- a/CommandOptions.php +++ b/CommandOptions.php @@ -130,4 +130,14 @@ public function rotate($rotation) return $this; } + /** + * @return $this + */ + public function strip() + { + $this->command .= ' -strip '; + + return $this; + } + }