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 73dded8 commit 785c533Copy full SHA for 785c533
Command.php
@@ -528,6 +528,17 @@ public function stroke(string $color): self
528
return $this;
529
}
530
531
+ /**
532
+ * @see http://imagemagick.org/script/command-line-options.php#strokewidth
533
+ */
534
+ public function strokeWidth(int $strokeWidth): self
535
+ {
536
+ $this->command[] = '-strokewidth';
537
+ $this->command[] = (string) $strokeWidth;
538
+
539
+ return $this;
540
+ }
541
542
/* ------------------------------------------ *
543
* End of ImageMagick native options. *
544
* Want more? Some options are missing? *
0 commit comments