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 785c533 commit 121b92bCopy full SHA for 121b92b
Command.php
@@ -386,7 +386,7 @@ public function size($geometry): self
386
*/
387
public function xc(string $canvasColor = 'none'): self
388
{
389
- $this->command[] = 'xc:'.$this->ref->color($canvasColor);
+ $this->command[] = '"xc:'.$this->ref->color($canvasColor).'"';
390
391
return $this;
392
}
@@ -523,7 +523,7 @@ public function pointsize(int $pointsize): self
523
public function stroke(string $color): self
524
525
$this->command[] = '-stroke';
526
- $this->command[] = $this->ref->color($color);
+ $this->command[] = '"'.$this->ref->color($color).'"';
527
528
529
0 commit comments