Browse Source

transparent background on SVG and other iamge formats

pull/40/head
Savetheinternet 13 years ago
parent
commit
101530151a
  1. 1
      inc/image.php

1
inc/image.php

@ -140,6 +140,7 @@
class ImageImagick extends ImageBase { class ImageImagick extends ImageBase {
public function init() { public function init() {
$this->image = new Imagick(); $this->image = new Imagick();
$this->image->setBackgroundColor(new ImagickPixel('transparent'));
} }
public function from() { public function from() {
try { try {

Loading…
Cancel
Save