We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6562767 commit da6c798Copy full SHA for da6c798
Command.php
@@ -638,6 +638,17 @@ public function transverse(): self
638
return $this;
639
}
640
641
+ /**
642
+ * @see http://www.imagemagick.org/script/command-line-options.php#threshold
643
+ */
644
+ public function threshold(string $threshold): self
645
+ {
646
+ $this->command[] = '-threshold';
647
+ $this->command[] = $this->ref->threshold($threshold);
648
+
649
+ return $this;
650
+ }
651
652
/**
653
* /!\ Append a raw command to ImageMagick.
654
* Not safe! Use at your own risks!
0 commit comments